Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Detecting when propensities overflow #43

Merged
merged 6 commits into from
Mar 6, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
reduce rates to 1e-30
  • Loading branch information
prismofeverything committed Mar 5, 2020
commit b6fd24f88c83566d22c877e75ea574d8dd581137
2 changes: 1 addition & 1 deletion arrow/test/negative_counts.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
data = json.load(f)

stoich = np.array(data['stoich'])
rates = np.array(data['rates'])
rates = np.array(data['rates']) * 1e-30
counts = np.array(data['counts'])

system = StochasticSystem(stoich.T, random_seed=0)
Expand Down