summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/level-0/concept.hpp
diff options
context:
space:
mode:
authorolpc user <olpc@xo-5d-f7-86.localdomain>2020-01-10 14:55:19 -0800
committerolpc user <olpc@xo-5d-f7-86.localdomain>2020-01-10 14:55:19 -0800
commitc8bb547bea279af2bb48c13260f98aa8add07131 (patch)
tree7f64265d514dc50427d2e5d8a70e09a46927dfbd /starts/meaning-vm/level-0/concept.hpp
parent5601d1f3324c30651ad3f264ac2d6e7f12ea8b34 (diff)
downloadstandingwithresilience-c8bb547bea279af2bb48c13260f98aa8add07131.tar.gz
standingwithresilience-c8bb547bea279af2bb48c13260f98aa8add07131.zip
move intellect-framework-from-internet into folder
Diffstat (limited to 'starts/meaning-vm/level-0/concept.hpp')
-rw-r--r--starts/meaning-vm/level-0/concept.hpp73
1 files changed, 0 insertions, 73 deletions
diff --git a/starts/meaning-vm/level-0/concept.hpp b/starts/meaning-vm/level-0/concept.hpp
deleted file mode 100644
index 833e417..0000000
--- a/starts/meaning-vm/level-0/concept.hpp
+++ /dev/null
@@ -1,73 +0,0 @@
-#pragma once
-
-#include "common.hpp"
-
-#include <any>
-#include <map>
-#include <unordered_set>
-#include <vector>
-
-namespace intellect {
-namespace level0 {
-
-struct concept
-{
- // a concept is made of concept-typed links to other concepts
- std::multimap<concept*,concept*> links;
- // and optional associated arbitrary data
- std::any data;
-
- using array = std::vector<concept*>;
-
- concept* id();
-
- void link(concept* type, concept* target);
- void unlink(concept* type, concept* target);
- void unlink(concept* type);
- void unlink(decltype(links)::iterator it);
-
- bool crucial() { return iscrucial || crucialparts.size(); }
- bool crucial(concept* type, concept* target);
- bool crucial(decltype(links)::iterator it) { return crucialparts.count(it); }
- void setcrucial() { iscrucial = true; }
- void setcrucial(concept* type, concept* target);
- void setcrucial(decltype(links)::iterator it) { crucialparts.insert(it); }
-
- bool linked(concept* type) const;
- bool linked(concept* type, concept* target) const;
-
- array getAll(concept* type) const;
-
- // get and set enforce that only 1 link of a given type is present
- concept* get(concept* type) const;
- void set(concept* type, concept* target);
-
- template <typename T>
- T & vget(concept* type) const { return get(type)->val<T>(); }
-
- template <typename T>
- T & val() { return std::any_cast<T&>(data); }
-
- template <typename T>
- void val(T const & v) { data = v; }
-
- bool hasval() { return data.has_value(); }
-
- template <typename T>
- bool hasvalof() { return hasval() && data.type() == typeid(T); }
-
-private:
- // for permanence
- bool iscrucial;
- struct linksit_hash
- {
- size_t operator()(decltype(links)::iterator const &it) const
- {
- return std::hash<decltype(&*it)>()(&*it);
- }
- };
- std::unordered_set<decltype(links)::iterator, linksit_hash> crucialparts;
-};
-
-}
-}