Skip to content

Commit

Permalink
ZKR-1016-Code-Clean-Up (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
FatemehHeidari authored Jun 20, 2023
1 parent e1501f3 commit 25b85d1
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions korrekt/src/smt_solver/smt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,7 @@ pub struct Printer<'a, W: 'a> {
}

fn get_logic_string() -> String {
let ff = true;
let bv = false;
let nia = false;

format!(
"QF_{}{}{}",
if bv { "BV" } else { "" },
if ff { "FF" } else { "" },
if nia { "NIA" } else { "" },
)
String::from("QF_FF")
}

impl<'a, W: 'a + Write> Printer<'a, W> {
Expand Down

0 comments on commit 25b85d1

Please sign in to comment.