small trigger notebook tweaks

This commit is contained in:
Andrew Clark 2020-08-18 15:22:22 -04:00
parent bdeb177ef2
commit 7526001711
13 changed files with 762426 additions and 381 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

After

Width:  |  Height:  |  Size: 63 KiB

View File

@ -41,7 +41,7 @@ for c in configs:
print("Params (config.py) : ", c.sim_config['M'])
c.initial_state['network'] = initialize_network(initial_values['n'],initial_values['m'],
initial_values['initial_funds'],
initial_values['funds'],
initial_values['supply'],c.sim_config['M'])
def get_configs():

View File

@ -2,10 +2,10 @@ import numpy as np
# Initial values
initial_values = {
'initial_sentiment': 0.6,
'sentiment': 0.6,
'n': 30, #initial participants
'm': 7, #initial proposals
'initial_funds': 4867.21, # in honey, as of 8-5-2020
'funds': 4867.21, # in honey, as of 8-5-2020
'supply': 22392.22, # Honey total supply balance as of 8-5-2020
}

View File

@ -3,9 +3,9 @@ from .parts.sys_params import *
state_variables = {
'network': 0, # will initialize during config.py
'funds':initial_values['initial_funds'],
'sentiment': initial_values['initial_sentiment'],
'effective_supply': (initial_values['supply']-initial_values['initial_funds'])*.8,
'funds':initial_values['funds'],
'sentiment': initial_values['sentiment'],
'effective_supply': (initial_values['supply']-initial_values['funds'])*.8,
'total_supply': initial_values['supply'],
# metrics variables
'fractionOfSupplyForVoting': 0,