File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1285,12 +1285,14 @@ def flip_linear(self,
12851285 first_hit_ind , first_hit_dist = util .first_hit (h_curr , h_target , sc_curr )
12861286 if first_hit_ind is None :
12871287 ftmp = self .vc .triangulate (heights = h_target )
1288- print (ftmp , T_curr )
1289- print (ftmp == T_curr )
1288+ print (f"vc = { vc .vectors ().tolist ()} " )
1289+ print (f"T_curr = { T_curr .cones ()} " )
1290+ print (f"ftmp = { ftmp .cones ()} " )
1291+ print ('ftmp == T_curr ' ,ftmp == T_curr )
12901292 print (np .min (sc_curr @h_curr ))
12911293 print (np .min (sc_curr @h_target ))
1292- print (np .min (ftmp .secondary_cone_hyperplanes (via_circuits = True , verbosity = - 1 )@h_curr ))
1293- print (np .min (ftmp .secondary_cone_hyperplanes (via_circuits = True , verbosity = - 1 )@h_target ))
1294+ # print(np.min(ftmp.secondary_cone_hyperplanes(via_circuits=True, verbosity=-1)@h_curr))
1295+ # print(np.min(ftmp.secondary_cone_hyperplanes(via_circuits=True, verbosity=-1)@h_target))
12941296 print ("????" )
12951297
12961298 msg = "first_hit_ind=None... should've been caught earlier... "
You can’t perform that action at this time.
0 commit comments