solverforge-macros 0.8.13

Derive macros for SolverForge constraint solver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[path = "fixtures/standard_multi_module_plan.rs"]
mod plan;
#[path = "fixtures/standard_multi_module_task.rs"]
mod task;
#[path = "fixtures/standard_multi_module_worker.rs"]
mod worker;

pub use plan::Plan;
pub use task::Task;
pub use worker::Worker;

fn main() {
    let _ = Plan {
        workers: Vec::new(),
        tasks: Vec::new(),
        score: None,
    };
}