You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For those generators that can return a complete history, discovered minima, other descriptive components of the generator, separately from "new points":
def get_state() -> list[dict]
For example, APOSMM needs to return discovered minima to the user. In libEnsemble we've currently implemented this
as:
final_data = APOSMM.final_tell(final_results)
But I believe the consensus has been this should resemble:
For those generators that can return a complete history, discovered minima, other descriptive components of the generator, separately from "new points":
def get_state() -> list[dict]
For example, APOSMM needs to return discovered minima to the user. In libEnsemble we've currently implemented this
as:
final_data = APOSMM.final_tell(final_results)
But I believe the consensus has been this should resemble:
The text was updated successfully, but these errors were encountered: