diff options
author | olpc user <olpc@xo-5d-f7-86.localdomain> | 2020-01-10 18:05:43 -0800 |
---|---|---|
committer | olpc user <olpc@xo-5d-f7-86.localdomain> | 2020-01-10 18:05:43 -0800 |
commit | 3223a360d0e70f75497aecf8c033a4f987335b5b (patch) | |
tree | c34e5ed5d7aa83513447644b4774c0449336657f /intellect-framework-from-internet/starts/meaning-vm/level-0/concept.hpp | |
parent | 26c980d302adce8e3d802cb8db8ab1c69d58ce1a (diff) | |
download | standingwithresilience-3223a360d0e70f75497aecf8c033a4f987335b5b.tar.gz standingwithresilience-3223a360d0e70f75497aecf8c033a4f987335b5b.zip |
I'm confused and am handling multiple unexpected systems issues
Diffstat (limited to 'intellect-framework-from-internet/starts/meaning-vm/level-0/concept.hpp')
-rw-r--r-- | intellect-framework-from-internet/starts/meaning-vm/level-0/concept.hpp | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/intellect-framework-from-internet/starts/meaning-vm/level-0/concept.hpp b/intellect-framework-from-internet/starts/meaning-vm/level-0/concept.hpp deleted file mode 100644 index 833e417..0000000 --- a/intellect-framework-from-internet/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; -}; - -} -} |