in Synthesis_incorporation/value_search/value_search_settings.py [0:0]
def __init__(self):
# Whether to print initialization settings
self.print_init = True
# Whether to print examples
self.print_examples = True
# Whether to print solutions
self.print_solutions = True
# Whether to print intermediate results and progress. Setting this to True
# will cause significant slowdown from computing and printing many
# expressions.
self.verbose = False
# Whether to print every FunctionOperation application before it occurs.
# Setting this to True will cause a huge amount of output and significant
# slowdown.
self.all_apply = False
# Whether to print warnings about too-large tensors.
self.tensor_size_warnings = False
# Whether to print progress at each iteration of target expression weight.
self.progress = False
# Whether to print bad solutions.
self.bad_solutions = False
# Whether to print statistics about operations and executions.
self.statistics = False
# Whether to print statistics sorted by time (versus by name). Ignored if
# `statistics` is False.
self.statistics_sort_by_time = False
# Whether to print the operations that are prioritized or deprioritized.
self.prioritized_operations = False
self.deprioritized_operations = False
# Whether to print the predicted operations during the iterative predictions.
self.predicted_operations = False