small trigger notebook tweaks
This commit is contained in:
parent
bdeb177ef2
commit
7526001711
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 |
Binary file not shown.
Binary file not shown.
|
|
@ -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():
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue