greyjack 0.4.6

Rust version of GreyJack Solver for constraint continuous, integer, mixed integer optimization problems
Documentation
1
2
3
4
5
6
7

use std::collections::HashMap;
use crate::cotwin::CotwinValueTypes;

pub trait CotwinEntityTrait {
    fn to_vec(&self) -> Vec<(String, CotwinValueTypes)>;
}