From 0348fcfa3e9ae532cced316a8e92231eba185fff Mon Sep 17 00:00:00 2001 From: James Cherry Date: Mon, 4 Jan 2021 09:12:27 -0800 Subject: [PATCH] cudd compile errors --- search/Sim.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/search/Sim.cc b/search/Sim.cc index 6a5f69df..460c2d64 100644 --- a/search/Sim.cc +++ b/search/Sim.cc @@ -66,9 +66,9 @@ Sim::functionSense(const FuncExpr *expr, const Pin *input_pin, const Instance *inst) { - debugPrint2(debug_, "sim", 4, "find sense pin %s %s", - network_->pathName(input_pin), - expr->asString()); + debugPrint(debug_, "sim", 4, "find sense pin %s %s", + network_->pathName(input_pin), + expr->asString()); bool increasing, decreasing; { UniqueLock lock(cudd_lock_); @@ -92,7 +92,7 @@ Sim::functionSense(const FuncExpr *expr, sense = TimingSense::negative_unate; else sense = TimingSense::non_unate; - debugPrint1(debug_, "sim", 4, " %s", timingSenseString(sense)); + debugPrint(debug_, "sim", 4, " %s", timingSenseString(sense)); return sense; }