Skip to content

Commit e3b3fa9

Browse files
committed
temp print statements
1 parent 9f44b23 commit e3b3fa9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

burnman/tools/equilibration.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ def set_compositions_and_state_from_parameters(assemblage, parameters):
167167
raise Exception(
168168
f"Phase amounts should be >-1.0e-8 but they are {repr(phase_amounts)}.\n"
169169
f"Parameters: {repr(parameters)}.\n"
170-
f"{repr(assemblage)}."
171170
)
172171
phase_amounts = np.abs(phase_amounts)
173172
assemblage.n_moles = sum(phase_amounts)
@@ -218,7 +217,11 @@ def F(
218217
:returns: The vector corresponding to F(x).
219218
:rtype: numpy.array
220219
"""
221-
220+
print(x)
221+
print(assemblage)
222+
print(equality_constraints)
223+
print(reduced_composition_vector)
224+
print(reduced_free_composition_vectors)
222225
set_compositions_and_state_from_parameters(assemblage, x)
223226
new_endmember_amounts = get_endmember_amounts(assemblage)
224227

0 commit comments

Comments
 (0)