Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
teiesti committed Dec 8, 2023
1 parent b57cab6 commit 63f4d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/translating/gamma.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ fn there(formula: Formula) -> Formula {
fn prepend_predicate(formula: Formula, prefix: &'static str) -> Formula {
formula.apply(&mut |formula| match formula {
Formula::AtomicFormula(AtomicFormula::Atom(mut a)) => {
a.predicate.insert_str(0, prefix);
a.predicate_symbol.insert_str(0, prefix);
Formula::AtomicFormula(AtomicFormula::Atom(a))
}
x => x,
Expand Down

0 comments on commit 63f4d54

Please sign in to comment.