from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range ) import numpy as np import random import math author = 'Huanren Zhang' doc = """ setting the experiment ending time for the calculation of the duration of the experiment """ class Constants(BaseConstants): name_in_url = 'sinsgc' players_per_group = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass