Skip to content

Commit ab03f7b

Browse files
Removed prints!
1 parent 4901802 commit ab03f7b

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

src/parsing/rules/semantics.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -285,19 +285,16 @@ impl<'src> SemanticState<'src> {
285285
movers: beta_movers,
286286
..
287287
} = beta;
288-
println!("{} {}", alpha.get_type().unwrap(), beta.get_type().unwrap());
289288

290289
let alpha = match alpha.raised_conjoin(beta) {
291290
Ok(x) => x,
292291
Err(ConjoiningError::ReductionError(e)) => {
293292
panic!("Reduction error in predicate_modification {e}")
294293
}
295-
Err(e) => {
296-
println!("{e}");
294+
Err(_) => {
297295
return None;
298296
}
299297
};
300-
println!("wee woo");
301298
alpha_movers.extend(beta_movers);
302299
Some(SemanticState {
303300
expr: alpha,
@@ -967,7 +964,7 @@ mod tests {
967964
.parse(&PhonContent::from(s), "0", &ParsingConfig::default())?
968965
{
969966
let (x, _h) = r.to_interpretation(&lexicon).next().unwrap();
970-
println!("{x:}");
967+
println!("{x}");
971968
n += 1;
972969
}
973970
assert!(n > 0);

0 commit comments

Comments
 (0)