macro_rules! lc {
() => { ... };
($(($coeff:expr, $var:expr)),+ $(,)?) => { ... };
($($var:expr),+ $(,)?) => { ... };
}Expand description
Generate a LinearCombination from arithmetic expressions involving
Variables.
macro_rules! lc {
() => { ... };
($(($coeff:expr, $var:expr)),+ $(,)?) => { ... };
($($var:expr),+ $(,)?) => { ... };
}Generate a LinearCombination from arithmetic expressions involving
Variables.