Skip to content

Commit 34f9afd

Browse files
committed
Fix issue
1 parent 8f93a2a commit 34f9afd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

airobas/blocks_hub/marabou_block.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,14 +365,15 @@ def verif(self, indexes: np.ndarray) -> BlockVerifOutput:
365365
y_min = self.data_container.lbound_output_points[indexes, :]
366366
y_max = self.data_container.ubound_output_points[indexes, :]
367367
for index in range(nb_points):
368+
import pdb; pdb.set_trace()
368369
((score, input_sat, output_sat), times) = solve_stability_property(
369370
network,
370371
x_min=x_min[index],
371372
x_max=x_max[index],
372373
y_min=y_min[index],
373374
y_max=y_max[index],
374375
options= self.options,
375-
timeout=self.options.get("time_out", 200),
376+
#timeout=self.options.get("time_out", 200),
376377
)
377378
output.init_time_per_sample[index] = times[1] - times[0]
378379
output.verif_time_per_sample[index] = times[2] - times[1]

0 commit comments

Comments
 (0)