Open mmckerns opened 1 year ago
log files from ensemble solvers use a tuple of (iter,id) instead of (iter,). Because the hypercube plotters use read_history(filename, iter=False), they ignore id, and thus can't handle ensemble solver logs correctly.
read_history(filename, iter=False)
id
use mystic.scripts._get_history to handle 2-tuple of ids appropriately?
mystic.scripts._get_history
ids
log files from ensemble solvers use a tuple of (iter,id) instead of (iter,). Because the hypercube plotters use
read_history(filename, iter=False)
, they ignoreid
, and thus can't handle ensemble solver logs correctly.