kudos xd pt 2

This commit is contained in:
Joshua E. Jodesty 2019-08-22 18:55:44 -04:00
parent 342f3a519c
commit ac6e6eebda
3 changed files with 15 additions and 7 deletions

View File

@ -4,10 +4,12 @@ Authors
cadCAD was originally implemented by Joshua E. Jodesty and designed by Michael Zargham, Markus B. Koch, and cadCAD was originally implemented by Joshua E. Jodesty and designed by Michael Zargham, Markus B. Koch, and
Matthew Barlin from 2018 to 2019. Matthew Barlin from 2018 to 2019.
Project Maintainers: Project Maintainers:
- Joshua E. Jodesty <joshua@block.science, joshua.jodesty@gmail.com> - Joshua E. Jodesty <joshua@block.science, joshua.jodesty@gmail.com>
- Markus B. Koch <markus@block.science> - Markus B. Koch <markus@block.science>
Contributors: Contributors:
- Joshua E. Jodesty - Joshua E. Jodesty
- Markus B. Koch - Markus B. Koch
@ -16,7 +18,6 @@ Contributors:
- Zixuan Zhang - Zixuan Zhang
Wed also like to thank: Wed also like to thank:
- Andrew Clark - Andrew Clark
- Nikhil Jamdade - Nikhil Jamdade

View File

@ -70,11 +70,22 @@ class Executor:
config_proc = Processor() config_proc = Processor()
create_tensor_field = TensorFieldReport(config_proc).create_tensor_field create_tensor_field = TensorFieldReport(config_proc).create_tensor_field
print(self.exec_context+": "+str(self.configs))
print(r'''
__________ ____
________ __ _____/ ____/ | / __ \
/ ___/ __` / __ / / / /| | / / / /
/ /__/ /_/ / /_/ / /___/ ___ |/ /_/ /
\___/\__,_/\__,_/\____/_/ |_/_____/
by BlockScience
''')
print(f'Execution Mode: {self.exec_context + ": " + str(self.configs)}')
print(f'Configurations: {self.configs}')
var_dict_list, states_lists, Ts, Ns, eps, configs_structs, env_processes_list, partial_state_updates, simulation_execs = \ var_dict_list, states_lists, Ts, Ns, eps, configs_structs, env_processes_list, partial_state_updates, simulation_execs = \
[], [], [], [], [], [], [], [], [] [], [], [], [], [], [], [], [], []
config_idx = 0 config_idx = 0
print(self.configs)
for x in self.configs: for x in self.configs:
Ts.append(x.sim_config['T']) Ts.append(x.sim_config['T'])

View File

@ -1,4 +1,3 @@
from pprint import pprint
from typing import Any, Callable, Dict, List, Tuple from typing import Any, Callable, Dict, List, Tuple
from pathos.pools import ThreadPool as TPool from pathos.pools import ThreadPool as TPool
from copy import deepcopy from copy import deepcopy
@ -170,9 +169,6 @@ class Executor:
time_step += 1 time_step += 1
pprint(states_list)
print()
return states_list return states_list
# state_update_pipeline # state_update_pipeline