Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/ReckonPrimer.activity/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'ReckonPrimer.activity/settings.py')
-rwxr-xr-xReckonPrimer.activity/settings.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/ReckonPrimer.activity/settings.py b/ReckonPrimer.activity/settings.py
index b91e927..ab1dbd9 100755
--- a/ReckonPrimer.activity/settings.py
+++ b/ReckonPrimer.activity/settings.py
@@ -20,19 +20,20 @@ class Settings:
'MAX' : 30, # maximum of calcs generated.
# Generate fills up by varying input.
'MIN' : 20, # minimum of calcs generated UNUSED
- 'min' : 0, # minimum in size of a number in a calc
+ 'min' : 1, # minimum in size of a number in a calc
'max' : 1, # maximum in size of a number in a calc
# 0 <= min <= max <= 10
'+' : True, # make all additions min..max
- '-' : True, # make all subtactions min..max
+ '-' : False, # make all subtactions min..max
'_+_=_' : True, # = is _right_ from operator, e.g. 1+2=3
- 'input=' : [1,3,5],# list of positions in calc: 1 | 3 | 5
+ 'input=' : [5],# list of positions in calc: 1 | 3 | 5
# where input is possible;
# actual positions chosen by Generate.
'_=_+_' : False, # = is _left_ from operator, e.g. 3=1+2
'=input' : [1,3,5],# analogous to '_+_=_'
- 'shuffle': True, # shuffle _all_ the calcs
- 'cut-max': True # cut set of all calcs down to MAX
+ 'shuffle': False, # shuffle _all_ the calcs
+ 'cut-max': True, # cut set of all calcs down to MAX
+
}
self._default_passten = \
@@ -60,7 +61,8 @@ class Settings:
'newline' : True, # display 2nd line for intermediate results
'shuffle_all' : False, # shuffle all calcs
'shuffle_inner': False, # shuffle only 1st (inner) iteration
- 'cut-max' : True # cut set of all calcs down to MAX
+ 'cut-max' : True, # cut set of all calcs down to MAX
+
}
self._default_times_div = \
@@ -84,7 +86,8 @@ class Settings:
# -: maximum result
'shuffle_all' : False, # shuffle all calcs
'shuffle_inner': True, # shuffle only 1st (inner) iteration
- 'cut-max' : True # cut set of all calcs down to MAX
+ 'cut-max' : True, # cut set of all calcs down to MAX
+
}
#!!!extend here with additional topic!!!