Skip to content

Commit 0eeb5c1

Browse files
authored
Add files via upload
1 parent 6d154bf commit 0eeb5c1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

multioptpy/entrypoints.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,8 @@ def switch_conformer_with_tabu(energy_list, visit_counts, temperature=298.15, al
930930
tabu_alpha = args.tabu_alpha
931931
init_geom_num_list, init_element_list = read_xyz(args.INPUT)
932932
sampling_temperature = args.sampling_temperature
933-
folder_name = os.path.splitext(args.INPUT)[0]+"_"+str(int(args.base_force))+"KJ_CS_REPORT"
933+
date_str = datetime.datetime.now().strftime("%Y%m%d_%H%M%S")
934+
folder_name = os.path.splitext(args.INPUT)[0]+"_"+str(int(args.base_force))+"KJ_CS_"+date_str
934935

935936
if not os.path.exists(folder_name):
936937
os.makedirs(folder_name)

0 commit comments

Comments
 (0)