cnvx-parse 0.0.1

parser for cnvx optimization library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use cnvx_core::Model;

use super::LanguageParser;

#[derive(Default)]
pub struct AMPLLanguage;

impl AMPLLanguage {
    pub fn new() -> Self {
        Self {}
    }
}

impl LanguageParser for AMPLLanguage {
    fn parse(&self, _src: &str) -> Result<Model, String> {
        todo!("AMPL parser not implemented yet")
    }
}