In constraint programming I can notice that there is a function to get the solved time as below. (get_solve_time())
msol = mdl.solve(TimeLimit=10,add_log_to_solution='False')
#commenting out Solving status
#print("Solve status: " + msol.get_solve_status())
if msol.is_solution():
stdout.write("Solve time: " + str(msol.get_solve_time()) + "\n")
Is there any built in function that I can obtain the solve time in mathematical programming..
------------------------------
Suresh Abeyweera
------------------------------
#DecisionOptimization