From 3e0948e16f28668dd52580e710ae485f711b01a8 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Mon, 3 Jul 2017 15:37:17 +0200 Subject: Remove unneeded delays in smtbmc vlogtb --- backends/smt2/smtbmc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backends') diff --git a/backends/smt2/smtbmc.py b/backends/smt2/smtbmc.py index 8c876c2f4..adf747034 100644 --- a/backends/smt2/smtbmc.py +++ b/backends/smt2/smtbmc.py @@ -763,7 +763,7 @@ def write_vlogtb_trace(steps_start, steps_stop, index): pi_names = [[name] for name, _ in primary_inputs if name not in clock_inputs] pi_values = smt.get_net_bin_list(vlogtb_topmod, pi_names, vlogtb_state.replace("@@step_idx@@", str(i))) - print(" #1;", file=f) + print("", file=f) print(" // state %d" % i, file=f) if i > 0: print(" @(posedge clock);", file=f) -- cgit v1.2.3 href='/cgit.cgi/cloud-email/mitmproxy/'>cloud-email/mitmproxy
clone of mitm proxyJames
aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/components/ContentView/ContentViews.jsx
blob: 387c940af769a78d7e3f594ee033b771843a2102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99