nevergrad/benchmark/frozenexperiments.py [95:104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    seedg = create_seed_generator(seed)
    names = ["sphere"]
    optims = sorted(
        x for x, y in optimizers.registry.items() if y.one_shot and "arg" not in x and "mal" not in x
    )
    functions = [
        ArtificialFunction(
            name, block_dimension=bd, num_blocks=n_blocks, useless_variables=bd * uv_factor * n_blocks
        )
        for name in names
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



nevergrad/benchmark/frozenexperiments.py [169:178]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    seedg = create_seed_generator(seed)
    names = ["sphere"]  # n for n in ArtificialFunction.list_sorted_function_names() if "sphere" in n]
    optims = sorted(
        x for x, y in optimizers.registry.items() if y.one_shot and "arg" not in x and "mal" not in x
    )
    functions = [
        ArtificialFunction(
            name, block_dimension=bd, num_blocks=n_blocks, useless_variables=bd * uv_factor * n_blocks
        )
        for name in names
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



