@@ -791,12 +791,8 @@ def save_bin(self, data_dir, population_id = 1):
791791 self .dyn_0 .save_qe ("%s/dyn_gen_pop%d_" % (data_dir , population_id ))
792792
793793 if np .all (len (list (x )) > 0 for x in self .all_properties ):
794- print ('YES PROPERTIES' )
795794 with open (os .path .join (data_dir , "all_properties_pop%d.json" % population_id ), "w" ) as fp :
796795 json .dump ({"properties" : self .all_properties }, fp , cls = NumpyEncoder )
797- else :
798- print ('NOOO WHAT IS HAPPENING' )
799- print (self .all_properties )
800796
801797 def save_extxyz (self , filename , append_mode = True ):
802798 """
@@ -3149,20 +3145,15 @@ def compute_ensemble(self, calculator, compute_stress = True, stress_numerical =
31493145 self .remove_noncomputed ()
31503146
31513147 if is_cluster :
3152- print ("BEFORE COMPUTING:" , self .all_properties )
31533148 cluster .compute_ensemble (computing_ensemble , calculator , compute_stress )
31543149
31553150 else :
31563151 computing_ensemble .get_energy_forces (calculator , compute_stress , stress_numerical , verbose = verbose )
31573152
3158- print ("CE BEFORE MERGE:" , len (self .force_computed ))
31593153
31603154 if should_i_merge :
31613155 # Remove the noncomputed ensemble from here, and merge
31623156 self .merge (computing_ensemble )
3163- print ("CE AFTER MERGE:" , len (self .force_computed ))
3164-
3165- print ('ENSEMBLE ALL PROPERTIES:' , self .all_properties )
31663157
31673158 def merge (self , other ):
31683159 """
0 commit comments