Skip to content

Commit

Permalink
feat!: implemented norm_int functions and CohSum
Browse files Browse the repository at this point in the history
This feature is designed to allow for the correct implementation of
normalization integrals. Thanks to Lawrence Ng for pointing this out to
me.

BREAKING: This change requires AmpOps to be converted into CohSums, and
it changes the implementation of Model to load a Vec<CohSum> rather than
a single AmpOp.
  • Loading branch information
denehoffman committed Jun 5, 2024
1 parent 3fb70f9 commit a804178
Show file tree
Hide file tree
Showing 11 changed files with 342 additions and 101 deletions.
11 changes: 11 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ factorial = "0.4.0"
sphrs = "0.2.2"
criterion = "0.5.1"
rand = "0.8.5"
num_cpus = "1.16.0"

[profile.release]
lto = true
Expand Down
5 changes: 5 additions & 0 deletions bacon.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ need_stdout = false
command = ["cargo", "check", "--all-targets", "--color", "always"]
need_stdout = false

[jobs.benchmark]
command = ["cargo", "bench"]
need_stdout = false

[jobs.clippy]
command = [
"cargo",
Expand All @@ -40,6 +44,7 @@ need_stdout = false
command = [
"cargo",
"test",
"--release",
"--color",
"always",
"--",
Expand Down
Loading

0 comments on commit a804178

Please sign in to comment.