kill commented out code

release/4.3a0
Varun Agrawal 2022-01-02 23:49:47 -05:00
parent a9b2c32669
commit 174490eb51
1 changed files with 0 additions and 11 deletions

View File

@ -45,15 +45,6 @@ struct Crazy {
double b;
};
// bool equals(const Crazy& other, double tol = 1e-12) const {
// return a == other.a && std::abs(b - other.b) < tol;
// }
// bool operator==(const Crazy& other) const {
// return this->equals(other);
// }
// };
struct CrazyDecisionTree : public DecisionTree<string, Crazy> {
/// print to stdout
void print(const std::string& s = "") const {
@ -261,8 +252,6 @@ TEST(DT, conversion)
return y != 0;
};
BDT f2(f1, ordering, bool_of_int);
// f1.print("f1");
// f2.print("f2");
// create a value
Assignment<Label> x00, x01, x10, x11;