File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -532,9 +532,6 @@ def test_jacobian_A_opt(self):
532
532
# Get numerical derivative matrix
533
533
jac_FD = get_numerical_derivative (grey_box_object )
534
534
535
- print (jac_FD )
536
- print (jac )
537
-
538
535
# assert that each component is close
539
536
self .assertTrue (np .all (np .isclose (jac , jac_FD , rtol = 1e-4 , atol = 1e-4 )))
540
537
@@ -629,8 +626,6 @@ def test_hessian_A_opt(self):
629
626
630
627
# Get numerical derivative matrix
631
628
hess_FD = get_numerical_second_derivative (grey_box_object )
632
- print ("hess_FD" , hess_FD )
633
- print ("hess_gb" , hess_gb )
634
629
635
630
# assert that each component is close
636
631
self .assertTrue (np .all (np .isclose (hess_gb , hess_FD , rtol = 1e-4 , atol = 1e-4 )))
@@ -1016,12 +1011,6 @@ def test_solve_D_optimality_log_determinant(self):
1016
1011
# Solve the model
1017
1012
doe_object .run_doe ()
1018
1013
1019
- print ("Termination Message" )
1020
- print (doe_object .results ["Termination Message" ])
1021
- print (cyipopt_call_working )
1022
- print (bad_message in doe_object .results ["Termination Message" ])
1023
- print ("End Message" )
1024
-
1025
1014
optimal_time_val = doe_object .results ["Experiment Design" ][0 ]
1026
1015
optimal_obj_val = np .log10 (np .exp (pyo .value (doe_object .model .objective )))
1027
1016
You can’t perform that action at this time.
0 commit comments