Skip to content

Commit

Permalink
Merge branch 'pilot_hatch_lower_alpha_increase' of https://github.com…
Browse files Browse the repository at this point in the history
…/BlockScience/Risk-Adjusted-Bonding-Curves into pilot_hatch_lower_alpha_increase
  • Loading branch information
matttyb80 committed Feb 16, 2021
2 parents 952b8fe + 07086dc commit 4754570
Show file tree
Hide file tree
Showing 24 changed files with 144 additions and 522 deletions.
660 changes: 141 additions & 519 deletions Pilot/Chimple_Pilot.ipynb

Large diffs are not rendered by default.

Binary file modified Pilot/src/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file modified Pilot/src/__pycache__/config_wrapper.cpython-38.pyc
Binary file not shown.
Binary file modified Pilot/src/__pycache__/run_wrapper.cpython-38.pyc
Binary file not shown.
Binary file modified Pilot/src/__pycache__/run_wrapper2.cpython-38.pyc
Binary file not shown.
Binary file modified Pilot/src/__pycache__/utils.cpython-38.pyc
Binary file not shown.
Binary file modified Pilot/src/sim/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file modified Pilot/src/sim/__pycache__/sim_setup.cpython-38.pyc
Binary file not shown.
Binary file modified Pilot/src/sim/model/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file not shown.
Binary file modified Pilot/src/sim/model/__pycache__/state_variables.cpython-38.pyc
Binary file not shown.
Binary file modified Pilot/src/sim/model/__pycache__/sys_params.cpython-38.pyc
Binary file not shown.
Binary file modified Pilot/src/sim/model/parts/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file modified Pilot/src/sim/model/parts/__pycache__/attest.cpython-38.pyc
Binary file not shown.
Binary file modified Pilot/src/sim/model/parts/__pycache__/bondburn.cpython-38.pyc
Binary file not shown.
Binary file not shown.
Binary file modified Pilot/src/sim/model/parts/__pycache__/choose_agent.cpython-38.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Pilot/src/sim/model/parts/__pycache__/utils.cpython-38.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion Pilot/src/sim/model/state_variables.py
Expand Up @@ -35,7 +35,7 @@
# KAPPA = KAPPA[0] #### FIX KAPPA, ALPHA Dependent VERSION
######## Just for initalization of variables ##########
#### Overwritten in configs.py for parameter sweeps with values in sys_params ######
reserve = 10000 # (1-THETA[0])*MONEY_RAISED[0]
reserve = 1 # (1-THETA[0])*MONEY_RAISED[0]
# reserve = 5000 # (1-THETA[0])*MONEY_RAISED[0]

ALPHA = PUBLIC_ALPHA * S1 * reserve / (S1 * reserve - S0 * reserve + S0*C) #### FIX KAPPA, ALPHA Dependent VERSION
Expand Down
4 changes: 2 additions & 2 deletions Pilot/src/sim/model/sys_params.py
@@ -1,10 +1,10 @@
import itertools

KAPPA = [3]
KAPPA = [3] #not relevant, will be computed and overwritten in state_variables.py

C = [68100] #some amount greater than money raised, some ROI (10%) over money raised
PUBLIC_ALPHA = [0.5] # Starting value for PUBLIC_ALPHA!! System alpha is computed in state_variables.py
MONEY_RAISED = [10000]
MONEY_RAISED = [60000]

# KAPPA = [3.0] # computed from I / I-(C*alpha)
# C = [300000000] #some amount greater than money raised, some ROI (10%) over money raised
Expand Down

0 comments on commit 4754570

Please sign in to comment.