diff options
author | olpc user <olpc@xo-5d-f7-86.localdomain> | 2020-01-10 14:55:19 -0800 |
---|---|---|
committer | olpc user <olpc@xo-5d-f7-86.localdomain> | 2020-01-10 14:55:19 -0800 |
commit | c8bb547bea279af2bb48c13260f98aa8add07131 (patch) | |
tree | 7f64265d514dc50427d2e5d8a70e09a46927dfbd /starts/meaning-vm/habit-starts/learning-parts.hpp | |
parent | 5601d1f3324c30651ad3f264ac2d6e7f12ea8b34 (diff) | |
download | standingwithresilience-c8bb547bea279af2bb48c13260f98aa8add07131.tar.gz standingwithresilience-c8bb547bea279af2bb48c13260f98aa8add07131.zip |
move intellect-framework-from-internet into folder
Diffstat (limited to 'starts/meaning-vm/habit-starts/learning-parts.hpp')
-rw-r--r-- | starts/meaning-vm/habit-starts/learning-parts.hpp | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/starts/meaning-vm/habit-starts/learning-parts.hpp b/starts/meaning-vm/habit-starts/learning-parts.hpp deleted file mode 100644 index e3a3ccc..0000000 --- a/starts/meaning-vm/habit-starts/learning-parts.hpp +++ /dev/null @@ -1,41 +0,0 @@ -#pragma once - -#include "common.hpp" - -namespace habitstarts { - -// first need ability to trigger on stuff. -// whenever A happens, do B. -// stop doing B whenever A happens. -// when A happens, do B once. - -decl(action); decl(happens); decl(context); -decl(happened); // happened-habit(ctx) performs actions associated with ctx[happens] -decl(whenever); // whenever-habit(ctx) stores to do ctx[action] when ctx[happens] happens - // providing ctx[action-context] -decl(stop); decl(when); // stop-when-habit(ctx) removes doing ctx[action] on ctx[happens] -decl(once); // once-habit(ctx) stores to do ctx[action] the next time ctx[happens] happens - // providing ctx[action-context] - -/* - Testing metric: runs when event is fired, measures time between - event and right time. if [usual] time is less than ever before, success. - if time is significantly more than behavior's norm, failure. - Convert to English: try to have the event happen at the right time. -*/ -// starting out by making a judgement habit that occasionally provides 'good' or 'bad' to things, to lead how to develop - // for fairness, seems reasonable to provide a pattern showing reason for good or bad -// - -// set to do 1ce at goal time: -// ctx X -// set to do 1ce on goal time: -// set next-happened (local) -// delay (a sequence of habits that do nothing) -// if next-happened is set -// remove something from delay -// otherwise -// add something to delay (wait for unspecified user-perceptible time, selected from discrete set) -// provide adjusted delay to next context - -} |