@sdeverywhere/runtime 0.2.6 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.cjs +445 -25
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +212 -10
- package/dist/index.d.ts +212 -10
- package/dist/index.js +437 -22
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -52,7 +52,7 @@ import loadGeneratedModel from './sde-prep/generated-model.js'
|
|
|
52
52
|
### 2. Initialize a `ModelRunner`
|
|
53
53
|
|
|
54
54
|
The next step is to create a `ModelRunner` instance, which simplifies
|
|
55
|
-
the process of running a
|
|
55
|
+
the process of running a generated model with a given set of inputs and
|
|
56
56
|
parsing the outputs.
|
|
57
57
|
The `ModelRunner` produces an `Outputs` instance that provides easy
|
|
58
58
|
access to time series data for each output variable in the model.
|