Metadata-Version: 2.4
Name: gds-continuous
Version: 0.1.0
Summary: Continuous-time ODE integration engine for the GDS ecosystem
Project-URL: Homepage, https://github.com/BlockScience/gds-core
Project-URL: Repository, https://github.com/BlockScience/gds-core
Project-URL: Documentation, https://blockscience.github.io/gds-core
Author-email: Rohan Mehta <rohan@block.science>
License-Expression: Apache-2.0
Keywords: continuous-time,gds-framework,generalized-dynamical-systems,ode,simulation
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Typing :: Typed
Requires-Python: >=3.12
Requires-Dist: pydantic>=2.10
Provides-Extra: pandas
Requires-Dist: pandas>=2.0; extra == 'pandas'
Provides-Extra: scipy
Requires-Dist: numpy>=1.26; extra == 'scipy'
Requires-Dist: scipy>=1.13; extra == 'scipy'
Description-Content-Type: text/markdown

# gds-continuous

Continuous-time ODE integration engine for the GDS ecosystem.

## Installation

```bash
uv add gds-continuous[scipy]
```

## Quick Start

```python
from gds_continuous import ODEModel, ODESimulation

# Define an ODE: dx/dt = -x
model = ODEModel(
    state_names=["x"],
    initial_state={"x": 1.0},
    rhs=lambda t, y, p: [-y[0]],
)

# Integrate
sim = ODESimulation(model=model, t_span=(0.0, 5.0))
results = sim.run()
```
