We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38af93c commit 7b3af18Copy full SHA for 7b3af18
src/sbmlutils/resources/converters/odefac_template.md
@@ -32,6 +32,6 @@ length: [{{model_units["length"]}}]
32
33
# odes
34
{% for id in xids %}
35
-d {{ id }}/dt = {{dx[id]}} # [{{units[id]}}/{{units["time"]}}] {{names[id]}}
+d {{ id }}/dt = {{dx[id]}} # [{{units[id]}}/{{model_units["time"]}}] {{names[id]}}
36
{% endfor %}
37
```
src/sbmlutils/validation.py
@@ -316,6 +316,7 @@ def _check_consistency(
316
if internal_consistency:
317
count = doc.checkInternalConsistency()
318
else:
319
+ # count = doc.checkConsistency()
320
count = doc.checkConsistencyWithStrictUnits()
321
322
if count > 0:
0 commit comments