-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: support TraceBWConfig #13
base: main
Are you sure you want to change the base?
Changes from all commits
6c41b83
cf65b1d
9a230fc
d624e10
8e745ad
ba37525
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,10 +17,10 @@ pub mod bw; | |
#[cfg(feature = "bw-model")] | ||
pub use bw::{ | ||
BwTraceConfig, Forever, NormalizedBwConfig, RepeatedBwPatternConfig, SawtoothBwConfig, | ||
StaticBwConfig, | ||
StaticBwConfig, TraceBwConfig, | ||
}; | ||
#[cfg(feature = "bw-model")] | ||
pub use bw::{NormalizedBw, RepeatedBwPattern, SawtoothBw, StaticBw}; | ||
pub use bw::{NormalizedBw, RepeatedBwPattern, SawtoothBw, StaticBw, TraceBw}; | ||
|
||
#[cfg(feature = "delay-model")] | ||
pub mod delay; | ||
|
@@ -45,3 +45,9 @@ pub mod duplicate; | |
pub use duplicate::{DuplicateTraceConfig, RepeatedDuplicatePatternConfig, StaticDuplicateConfig}; | ||
#[cfg(feature = "duplicate-model")] | ||
pub use duplicate::{RepeatedDuplicatePattern, StaticDuplicate}; | ||
|
||
#[cfg(feature = "truncated-normal")] | ||
pub mod solve_truncate; | ||
|
||
#[cfg(feature = "serde")] | ||
pub mod trace_serde; | ||
Comment on lines
+52
to
+53
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you please confirm that this mod is valid if only feature I do think you can just merge this module into the bw module, as you only impl se/des for TraceBwConfig. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should also add a unit test for model TraceBw in this file.