Synthesis_incorporation/value_search/value_search.py [686:697]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if len(values) > 1 and predicted_operation.name in ['torch.cat(tensors, dim)', 'torch.stack(tensors)', 'torch.stack(tensors, dim)']:
        stacked_value = all_operations.find_operation_with_name('PairCreationOperation').apply(values, settings)
        if stacked_value is None:
            predicted_values = []
        else:
            predicted_values = predicted_operation.enumerate_values_with_values(
                given_values=[[stacked_value]],
                potential_value_list=constants_values,
                end_time=end_time,
                settings=settings,
                statistics=statistics
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Synthesis_incorporation/value_search/value_search.py [1086:1097]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    if len(values) > 1 and predicted_operation.name in ['torch.cat(tensors, dim)', 'torch.stack(tensors)', 'torch.stack(tensors, dim)']:
                                        stacked_value = all_operations.find_operation_with_name('PairCreationOperation').apply(values, settings)
                                        if stacked_value is None:
                                            predicted_values = []
                                        else:
                                            predicted_values = predicted_operation.enumerate_values_with_values(
                                                given_values=[[stacked_value]],
                                                potential_value_list=constants_values,
                                                end_time=end_time,
                                                settings=settings,
                                                statistics=statistics
                                            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



