Skip to content

Commit 2c6cffa

Browse files
committed
CC
1 parent 49d82da commit 2c6cffa

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

manticore/core/smtlib/visitors.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@
55
from .expression import *
66
from functools import lru_cache
77
import copy
8+
import io
89
import logging
910
import operator
11+
import time
1012
import math
1113
from decimal import Decimal
1214

@@ -211,9 +213,6 @@ def get_depth(exp):
211213
return visitor.result
212214

213215

214-
import io
215-
216-
217216
class PrettyPrinter(Visitor):
218217
def __init__(self, depth=None, **kwargs):
219218
super().__init__(**kwargs)
@@ -807,9 +806,6 @@ def visit_Expression(self, expression, *operands):
807806
return expression
808807

809808

810-
import time
811-
812-
813809
@lru_cache(maxsize=128, typed=True)
814810
def arithmetic_simplify(expression):
815811
start = time.time()

0 commit comments

Comments
 (0)