MCPcopy Create free account
hub / github.com/Open-Quant/openquant / OptimizationResult

Class OptimizationResult

crates/openquant/src/combinatorial_optimization.rs:135–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

133
134#[derive(Debug, Clone, PartialEq)]
135pub struct OptimizationResult {
136 pub best_decision: Vec<i64>,
137 pub best_objective: f64,
138 pub evaluated_candidates: usize,
139}
140
141pub trait IntegerObjective {
142 fn sense(&self) -> ObjectiveSense;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected