25 lines
609 B
Python
25 lines
609 B
Python
"""
|
|
Economic simulation models package.
|
|
|
|
This package contains the core Markov chain implementations and simulation engine
|
|
for demonstrating how capitalism "eats the world" when r > g.
|
|
"""
|
|
|
|
from .markov_chain import MarkovChain, CapitalistChain, ConsumerChain, EconomicAgent
|
|
from .economic_model import (
|
|
SimulationParameters,
|
|
SimulationSnapshot,
|
|
EconomicSimulation,
|
|
SimulationManager
|
|
)
|
|
|
|
__all__ = [
|
|
'MarkovChain',
|
|
'CapitalistChain',
|
|
'ConsumerChain',
|
|
'EconomicAgent',
|
|
'SimulationParameters',
|
|
'SimulationSnapshot',
|
|
'EconomicSimulation',
|
|
'SimulationManager'
|
|
] |