Skip to content

Commit

Permalink
Removed print statements for checking
Browse files Browse the repository at this point in the history
  • Loading branch information
ruaridhg committed Oct 12, 2023
1 parent 5061f8f commit 5db342b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,6 @@ def set_update_collection(self, value):
type(sckt)
]

print("type(sckt) = ", type(sckt))

# extract last number between '_' and 'd/D' in the
# attribute name, to determine the shape of the array
# TODO: there is probably a nicer way to do this...
Expand Down Expand Up @@ -172,10 +170,6 @@ def set_update_collection(self, value):
m_str + "_" + socket_attrib_str,
(ini_min_max_values[m_str],) * n_dim,
)
print("ASSIGNMENTS ========= ")
print(ini_min_max_values)
print(sckt_prop)
print(socket_attrib_str)


def get_input_json(self):
Expand Down
4 changes: 2 additions & 2 deletions randomiser/random_all/operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def execute(self, context):

print(tmp_values)
tmp_sck = nd.name
all_geom_dict[tmp_GNG] = tmp_sck
# all_geom_dict[tmp_GNG] = tmp_sck
GNG_sck_values_str = tmp_GNG + tmp_sck
GNG_sck_values_str = "Values " + GNG_sck_values_str
print(GNG_sck_values_str)
Expand Down Expand Up @@ -325,7 +325,7 @@ def execute(self, context):

print(tmp_values)
tmp_sck = nd.name
all_mat_dict[tmp_mat] = tmp_sck
# all_mat_dict[tmp_mat] = tmp_sck
if (
list_input_nodes_sorted[i_n]
in list_nodes2rand_in_groups
Expand Down

0 comments on commit 5db342b

Please sign in to comment.