d81d1de4ff
- Delete 20 duplicate tests already covered by parameter_tests.rs - Move 11 pure Trial unit tests into src/trial.rs - Split remaining 84 integration tests into tests/study/ (9 modules) - Group sampler tests into tests/sampler/ (7 modules) - Group pruner tests into tests/pruner/ (2 modules)
16 lines
241 B
Rust
16 lines
241 B
Rust
#![allow(
|
|
clippy::cast_sign_loss,
|
|
clippy::cast_precision_loss,
|
|
clippy::cast_possible_truncation
|
|
)]
|
|
|
|
mod ask_tell;
|
|
mod builder;
|
|
mod constraints;
|
|
mod enqueue;
|
|
mod iterator;
|
|
mod objective;
|
|
mod summary;
|
|
mod top_trials;
|
|
mod workflow;
|