From 917a69723f4fec9ce46cfabab1c9efabe7f1e1bf Mon Sep 17 00:00:00 2001 From: jsowash Date: Wed, 17 Jul 2019 12:26:05 -0700 Subject: [PATCH] Fixed typo --- compiler/characterizer/functional.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/characterizer/functional.py b/compiler/characterizer/functional.py index 4386b293..ce22e01a 100644 --- a/compiler/characterizer/functional.py +++ b/compiler/characterizer/functional.py @@ -137,7 +137,7 @@ class functional(simulation): if port in self.readwrite_ports: op = random.choice(rw_ops) elif port in self.write_ports: - op = rcandom.choice(w_ops) + op = random.choice(w_ops) else: op = random.choice(r_ops)