15 lines
566 B
Python
15 lines
566 B
Python
# Copyright (c) 2020, salesforce.com, inc.
|
|
# All rights reserved.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# For full license text, see the LICENSE file in the repo root
|
|
# or https://opensource.org/licenses/BSD-3-Clause
|
|
|
|
from ai_economist.foundation.base.base_env import scenario_registry
|
|
|
|
from .covid19 import covid19_env
|
|
from .one_step_economy import one_step_economy
|
|
from .simple_wood_and_stone import dynamic_layout, layout_from_file
|
|
|
|
# Import files that add Scenario class(es) to scenario_registry
|
|
# -------------------------------------------------------------
|