Skip to content

Commit

Permalink
more work on scanarios
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Sep 16, 2024
1 parent c0d16b4 commit 9211f60
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
4 changes: 2 additions & 2 deletions data/src/dim/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn parse_assertion(symbol_table: &SymbolScope, input: &str) -> TractResult<A
}

fn assertion<'i>(s: &SymbolScope, i: &'i str) -> IResult<&'i str, Assertion> {
alt((
delimited(spaces, alt((
map(separated_pair(|i| expr(s, i), stag("=="), |i| expr(s, i)), |(a, b)| {
Assertion::Eq(a, b)
}),
Expand All @@ -38,7 +38,7 @@ fn assertion<'i>(s: &SymbolScope, i: &'i str) -> IResult<&'i str, Assertion> {
map(separated_pair(|i| expr(s, i), stag(">"), |i| expr(s, i)), |(a, b)| {
Assertion::GT(a, b)
}),
))(i)
)), spaces)(i)
}

fn expr<'i>(symbol_table: &SymbolScope, i: &'i str) -> IResult<&'i str, TDim> {
Expand Down
4 changes: 4 additions & 0 deletions data/src/dim/sym.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,10 @@ impl SymbolScopeData {
self.scenarios.keys().map(|s| s.as_ref())
}

pub fn scenario(&self, s: &str) -> impl Iterator<Item = &'_ Assertion> {
self.scenarios[s].iter()
}

pub fn resolving<R>(&self, sym: &Symbol, f: impl FnOnce(&str) -> R) -> Option<R> {
self.table.resolve(sym.1).map(f)
}
Expand Down
6 changes: 5 additions & 1 deletion nnef/src/deser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,11 @@ impl<'mb> ModelBuilder<'mb> {
self.symbols.push(symbol);
}
"tract_assert" => {
self.model.symbols.add_assertion(&ext.1)?;
if let Some((scen, rule)) = ext.1.split_once(':') {
self.model.symbols.add_scenario_assertion(scen, rule)?;
} else {
self.model.symbols.add_assertion(&ext.1)?;
}
}
"KHR_enable_fragment_definitions" | "KHR_enable_operator_expressions" => (),
_ => {
Expand Down
8 changes: 7 additions & 1 deletion nnef/src/ser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,15 @@ impl<'a> IntoAst<'a> {
for sym in self.model.symbols.all_symbols() {
extension.push(("tract_symbol".into(), sym.to_string()));
}
for assert in self.model.symbols.all_assertions() {
let locked = self.model.symbols.0.lock();
for assert in locked.borrow().all_assertions() {
extension.push(("tract_assert".into(), assert.to_string()));
}
for scenario in locked.borrow().scenarios() {
for assert in locked.borrow().scenario(scenario) {
extension.push(("tract_assert".into(), format!("{scenario}: {assert}")));
}
}
let properties = FragmentDef {
decl: FragmentDecl {
id: Identifier("tract_core_properties".to_string()),
Expand Down

0 comments on commit 9211f60

Please sign in to comment.