├── LICENSE ├── README.md ├── docs ├── .DS_Store ├── 404.html ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── _sass │ └── custom │ │ └── custom.css ├── _site │ ├── 404.html │ ├── about │ │ └── index.html │ ├── assets │ │ ├── css │ │ │ ├── just-the-docs-dark.css │ │ │ ├── just-the-docs-dark.css.map │ │ │ ├── just-the-docs-default.css │ │ │ ├── just-the-docs-default.css.map │ │ │ ├── just-the-docs-light.css │ │ │ └── just-the-docs-light.css.map │ │ ├── images │ │ │ ├── just-the-docs.png │ │ │ └── search.svg │ │ ├── img │ │ │ ├── logo.png │ │ │ ├── phenesthe_architecture.pdf │ │ │ ├── phenesthe_architecture.png │ │ │ ├── phenesthe_logo.png │ │ │ └── ysp_dep.png │ │ └── js │ │ │ ├── just-the-docs.js │ │ │ ├── search-data.json │ │ │ └── vendor │ │ │ └── lunr.min.js │ ├── docs │ │ └── documentation │ │ │ ├── architecture.html │ │ │ ├── definitions.html │ │ │ ├── index.html │ │ │ ├── language.html │ │ │ └── stream.html │ ├── feed.xml │ ├── getting-started │ │ └── index.html │ ├── index.html │ └── installation │ │ └── index.html ├── assets │ ├── .DS_Store │ ├── img │ │ ├── .DS_Store │ │ ├── logo.png │ │ ├── phenesthe_architecture.png │ │ ├── phenesthe_logo.png │ │ └── ysp_dep.png │ └── js │ │ └── zzzz-search-data.json ├── docs │ ├── .DS_Store │ ├── about.markdown │ ├── documentation │ │ ├── .DS_Store │ │ ├── architecture.markdown │ │ ├── definitions.markdown │ │ ├── documentation.markdown │ │ ├── language.markdown │ │ ├── phenesthe_architecture.png │ │ ├── stream.markdown │ │ └── ysp_dep.png │ ├── examples │ │ ├── examples.markdown │ │ └── maritime.markdown │ ├── getting_started.markdown │ └── installation.markdown └── index.markdown ├── phenesthe.prolog ├── samples ├── alice_and_bob │ ├── definitions.prolog │ ├── narrative.prolog │ └── run.prolog ├── maritime │ ├── .DS_Store │ ├── .gitattributes │ ├── README.txt │ ├── dataset_info.txt │ ├── definitions.prolog │ ├── init.prolog │ ├── init_serial.prolog │ ├── logs │ │ ├── log115200.csv │ │ ├── log14400.csv │ │ ├── log28800.csv │ │ ├── log57600.csv │ │ ├── log7200.csv │ │ ├── log_all.csv │ │ ├── log_serial115200.csv │ │ ├── log_serial14400.csv │ │ ├── log_serial28800.csv │ │ ├── log_serial57600.csv │ │ ├── log_serial7200.csv │ │ ├── log_serial_all.csv │ │ └── process_logs.py │ ├── run_experiments.sh │ └── vessel_types.prolog ├── meal │ ├── definitions.prolog │ ├── mealPrep.pdf │ ├── narrative.prolog │ └── run.prolog └── ysp │ ├── definitions.prolog │ ├── dependencies.pdf │ ├── narrative.prolog │ └── run.prolog ├── src ├── filters.prolog ├── multithreading.prolog ├── operators.prolog ├── stream_processing.prolog ├── temporal_connectives.prolog ├── temporal_operators.prolog ├── temporal_relations.prolog ├── transformations.prolog └── utilities.prolog └── unit_tests ├── definitions.prolog ├── dynamic_temporal_phenomena ├── narrative.prolog ├── run.prolog ├── run_tests.sh └── tests.prolog ├── events ├── narrative.prolog ├── run.prolog ├── run_tests.sh ├── test_bla.prolog └── tests.prolog ├── run_all_tests.sh └── states ├── narrative.prolog ├── run.prolog ├── run_tests.sh ├── tests.prolog └── tests2.prolog /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/README.md -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_sass/custom/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_site/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/404.html -------------------------------------------------------------------------------- /docs/_site/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/about/index.html -------------------------------------------------------------------------------- /docs/_site/assets/css/just-the-docs-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/css/just-the-docs-dark.css -------------------------------------------------------------------------------- /docs/_site/assets/css/just-the-docs-dark.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/css/just-the-docs-dark.css.map -------------------------------------------------------------------------------- /docs/_site/assets/css/just-the-docs-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/css/just-the-docs-default.css -------------------------------------------------------------------------------- /docs/_site/assets/css/just-the-docs-default.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/css/just-the-docs-default.css.map -------------------------------------------------------------------------------- /docs/_site/assets/css/just-the-docs-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/css/just-the-docs-light.css -------------------------------------------------------------------------------- /docs/_site/assets/css/just-the-docs-light.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/css/just-the-docs-light.css.map -------------------------------------------------------------------------------- /docs/_site/assets/images/just-the-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/images/just-the-docs.png -------------------------------------------------------------------------------- /docs/_site/assets/images/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/images/search.svg -------------------------------------------------------------------------------- /docs/_site/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/img/logo.png -------------------------------------------------------------------------------- /docs/_site/assets/img/phenesthe_architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/img/phenesthe_architecture.pdf -------------------------------------------------------------------------------- /docs/_site/assets/img/phenesthe_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/img/phenesthe_architecture.png -------------------------------------------------------------------------------- /docs/_site/assets/img/phenesthe_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/img/phenesthe_logo.png -------------------------------------------------------------------------------- /docs/_site/assets/img/ysp_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/img/ysp_dep.png -------------------------------------------------------------------------------- /docs/_site/assets/js/just-the-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/js/just-the-docs.js -------------------------------------------------------------------------------- /docs/_site/assets/js/search-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/js/search-data.json -------------------------------------------------------------------------------- /docs/_site/assets/js/vendor/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/assets/js/vendor/lunr.min.js -------------------------------------------------------------------------------- /docs/_site/docs/documentation/architecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/docs/documentation/architecture.html -------------------------------------------------------------------------------- /docs/_site/docs/documentation/definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/docs/documentation/definitions.html -------------------------------------------------------------------------------- /docs/_site/docs/documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/docs/documentation/index.html -------------------------------------------------------------------------------- /docs/_site/docs/documentation/language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/docs/documentation/language.html -------------------------------------------------------------------------------- /docs/_site/docs/documentation/stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/docs/documentation/stream.html -------------------------------------------------------------------------------- /docs/_site/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/feed.xml -------------------------------------------------------------------------------- /docs/_site/getting-started/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/getting-started/index.html -------------------------------------------------------------------------------- /docs/_site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/index.html -------------------------------------------------------------------------------- /docs/_site/installation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/_site/installation/index.html -------------------------------------------------------------------------------- /docs/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/assets/.DS_Store -------------------------------------------------------------------------------- /docs/assets/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/assets/img/.DS_Store -------------------------------------------------------------------------------- /docs/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/assets/img/logo.png -------------------------------------------------------------------------------- /docs/assets/img/phenesthe_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/assets/img/phenesthe_architecture.png -------------------------------------------------------------------------------- /docs/assets/img/phenesthe_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/assets/img/phenesthe_logo.png -------------------------------------------------------------------------------- /docs/assets/img/ysp_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/assets/img/ysp_dep.png -------------------------------------------------------------------------------- /docs/assets/js/zzzz-search-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/assets/js/zzzz-search-data.json -------------------------------------------------------------------------------- /docs/docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/.DS_Store -------------------------------------------------------------------------------- /docs/docs/about.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/about.markdown -------------------------------------------------------------------------------- /docs/docs/documentation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/documentation/.DS_Store -------------------------------------------------------------------------------- /docs/docs/documentation/architecture.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/documentation/architecture.markdown -------------------------------------------------------------------------------- /docs/docs/documentation/definitions.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/documentation/definitions.markdown -------------------------------------------------------------------------------- /docs/docs/documentation/documentation.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/documentation/documentation.markdown -------------------------------------------------------------------------------- /docs/docs/documentation/language.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/documentation/language.markdown -------------------------------------------------------------------------------- /docs/docs/documentation/phenesthe_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/documentation/phenesthe_architecture.png -------------------------------------------------------------------------------- /docs/docs/documentation/stream.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/documentation/stream.markdown -------------------------------------------------------------------------------- /docs/docs/documentation/ysp_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/documentation/ysp_dep.png -------------------------------------------------------------------------------- /docs/docs/examples/examples.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/examples/examples.markdown -------------------------------------------------------------------------------- /docs/docs/examples/maritime.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/examples/maritime.markdown -------------------------------------------------------------------------------- /docs/docs/getting_started.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/getting_started.markdown -------------------------------------------------------------------------------- /docs/docs/installation.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/docs/installation.markdown -------------------------------------------------------------------------------- /docs/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/docs/index.markdown -------------------------------------------------------------------------------- /phenesthe.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/phenesthe.prolog -------------------------------------------------------------------------------- /samples/alice_and_bob/definitions.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/alice_and_bob/definitions.prolog -------------------------------------------------------------------------------- /samples/alice_and_bob/narrative.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/alice_and_bob/narrative.prolog -------------------------------------------------------------------------------- /samples/alice_and_bob/run.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/alice_and_bob/run.prolog -------------------------------------------------------------------------------- /samples/maritime/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/.DS_Store -------------------------------------------------------------------------------- /samples/maritime/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/.gitattributes -------------------------------------------------------------------------------- /samples/maritime/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/README.txt -------------------------------------------------------------------------------- /samples/maritime/dataset_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/dataset_info.txt -------------------------------------------------------------------------------- /samples/maritime/definitions.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/definitions.prolog -------------------------------------------------------------------------------- /samples/maritime/init.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/init.prolog -------------------------------------------------------------------------------- /samples/maritime/init_serial.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/init_serial.prolog -------------------------------------------------------------------------------- /samples/maritime/logs/log115200.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/logs/log115200.csv -------------------------------------------------------------------------------- /samples/maritime/logs/log14400.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/logs/log14400.csv -------------------------------------------------------------------------------- /samples/maritime/logs/log28800.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/logs/log28800.csv -------------------------------------------------------------------------------- /samples/maritime/logs/log57600.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/logs/log57600.csv -------------------------------------------------------------------------------- /samples/maritime/logs/log7200.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/logs/log7200.csv -------------------------------------------------------------------------------- /samples/maritime/logs/log_all.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/logs/log_all.csv -------------------------------------------------------------------------------- /samples/maritime/logs/log_serial115200.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/logs/log_serial115200.csv -------------------------------------------------------------------------------- /samples/maritime/logs/log_serial14400.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/logs/log_serial14400.csv -------------------------------------------------------------------------------- /samples/maritime/logs/log_serial28800.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/logs/log_serial28800.csv -------------------------------------------------------------------------------- /samples/maritime/logs/log_serial57600.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/logs/log_serial57600.csv -------------------------------------------------------------------------------- /samples/maritime/logs/log_serial7200.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/logs/log_serial7200.csv -------------------------------------------------------------------------------- /samples/maritime/logs/log_serial_all.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/logs/log_serial_all.csv -------------------------------------------------------------------------------- /samples/maritime/logs/process_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/logs/process_logs.py -------------------------------------------------------------------------------- /samples/maritime/run_experiments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/run_experiments.sh -------------------------------------------------------------------------------- /samples/maritime/vessel_types.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/maritime/vessel_types.prolog -------------------------------------------------------------------------------- /samples/meal/definitions.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/meal/definitions.prolog -------------------------------------------------------------------------------- /samples/meal/mealPrep.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/meal/mealPrep.pdf -------------------------------------------------------------------------------- /samples/meal/narrative.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/meal/narrative.prolog -------------------------------------------------------------------------------- /samples/meal/run.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/meal/run.prolog -------------------------------------------------------------------------------- /samples/ysp/definitions.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/ysp/definitions.prolog -------------------------------------------------------------------------------- /samples/ysp/dependencies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/ysp/dependencies.pdf -------------------------------------------------------------------------------- /samples/ysp/narrative.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/ysp/narrative.prolog -------------------------------------------------------------------------------- /samples/ysp/run.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/samples/ysp/run.prolog -------------------------------------------------------------------------------- /src/filters.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/src/filters.prolog -------------------------------------------------------------------------------- /src/multithreading.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/src/multithreading.prolog -------------------------------------------------------------------------------- /src/operators.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/src/operators.prolog -------------------------------------------------------------------------------- /src/stream_processing.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/src/stream_processing.prolog -------------------------------------------------------------------------------- /src/temporal_connectives.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/src/temporal_connectives.prolog -------------------------------------------------------------------------------- /src/temporal_operators.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/src/temporal_operators.prolog -------------------------------------------------------------------------------- /src/temporal_relations.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/src/temporal_relations.prolog -------------------------------------------------------------------------------- /src/transformations.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/src/transformations.prolog -------------------------------------------------------------------------------- /src/utilities.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/src/utilities.prolog -------------------------------------------------------------------------------- /unit_tests/definitions.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/definitions.prolog -------------------------------------------------------------------------------- /unit_tests/dynamic_temporal_phenomena/narrative.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/dynamic_temporal_phenomena/narrative.prolog -------------------------------------------------------------------------------- /unit_tests/dynamic_temporal_phenomena/run.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/dynamic_temporal_phenomena/run.prolog -------------------------------------------------------------------------------- /unit_tests/dynamic_temporal_phenomena/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/dynamic_temporal_phenomena/run_tests.sh -------------------------------------------------------------------------------- /unit_tests/dynamic_temporal_phenomena/tests.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/dynamic_temporal_phenomena/tests.prolog -------------------------------------------------------------------------------- /unit_tests/events/narrative.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/events/narrative.prolog -------------------------------------------------------------------------------- /unit_tests/events/run.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/events/run.prolog -------------------------------------------------------------------------------- /unit_tests/events/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/events/run_tests.sh -------------------------------------------------------------------------------- /unit_tests/events/test_bla.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/events/test_bla.prolog -------------------------------------------------------------------------------- /unit_tests/events/tests.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/events/tests.prolog -------------------------------------------------------------------------------- /unit_tests/run_all_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/run_all_tests.sh -------------------------------------------------------------------------------- /unit_tests/states/narrative.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/states/narrative.prolog -------------------------------------------------------------------------------- /unit_tests/states/run.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/states/run.prolog -------------------------------------------------------------------------------- /unit_tests/states/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/states/run_tests.sh -------------------------------------------------------------------------------- /unit_tests/states/tests.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/states/tests.prolog -------------------------------------------------------------------------------- /unit_tests/states/tests2.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manospits/Phenesthe/HEAD/unit_tests/states/tests2.prolog --------------------------------------------------------------------------------