├── .classpath ├── .gitignore ├── .gradle ├── 4.4 │ ├── fileChanges │ │ └── last-build.bin │ ├── fileHashes │ │ └── fileHashes.lock │ └── taskHistory │ │ ├── taskHistory.bin │ │ └── taskHistory.lock └── buildOutputCleanup │ ├── buildOutputCleanup.lock │ └── cache.properties ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.jdt.core.prefs ├── org.eclipse.jst.j2ee.ejb.annotations.xdoclet.prefs ├── org.eclipse.jst.ws.cxf.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.prefs.xml ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── LICENSE ├── README.md ├── WebContent └── META-INF │ └── MANIFEST.MF ├── _config.yml ├── bin └── testingPackage │ ├── inferenceEngineTest │ └── leaf node set.txt │ ├── testing1 │ └── Tokenizer_Testing.txt │ ├── testing10 │ ├── Comparison Testing for ALL Node Lines and features.txt │ └── Testing for ALL Node Lines and features.txt │ ├── testing2 │ ├── ToposortedNodeName.txt │ └── Wedding Planner.txt │ ├── testing3 │ ├── Wedding Planner.txt │ └── Wedding_Planner Inference Test.txt │ ├── testing4 │ ├── Comparison File For Reading Not Known Man Op Pos file.txt │ └── testing NOT, KNOWN, Mandatory, Possibly, and Optionally.txt │ ├── testing5 │ ├── testing NOT, KNOWN, Mandatory, Possibly, and Optionally inference.txt │ └── testing NOT, KNOWN, Mandatory, Possibly, and Optionally.txt │ ├── testing6 │ ├── Testing ValueConclusionLine Comparison.txt │ └── Testing ValueConclusionLine with NOT, KNOW, IS, and IS IN LIST features.txt │ ├── testing7 │ ├── Comparison for Testing full ValueConclusion and Comparison.txt │ └── Testing full ValueConclusion and Comparison.txt │ ├── testing8 │ ├── Comparison Testing for Whole features of ValueConclusionLine and ComparisonLine.txt │ └── Testing for whole features of ValueConclusionLine and ComparisonLine.txt │ └── testing9 │ ├── Comparison for testing whole features of ValueConclusionLine, ComparisonLine and ExprConclusionLine.txt │ └── Testing for whole features of ValueConclusionLine, ComparisonLine and ExprConclusionLine.txt ├── src ├── factValuePackage │ ├── FactBooleanValue.java │ ├── FactDateValue.java │ ├── FactDefiStringValue.java │ ├── FactDoubleValue.java │ ├── FactHashValue.java │ ├── FactIntegerValue.java │ ├── FactListValue.java │ ├── FactStringValue.java │ ├── FactURLValue.java │ ├── FactUUIDValue.java │ ├── FactValue.java │ └── FactValueType.java ├── inferencePackage │ ├── Assessment.java │ ├── AssessmentState.java │ ├── InferenceEngine.java │ └── TopoSort.java ├── nodePackage │ ├── ComparisonLine.java │ ├── Dependency.java │ ├── DependencyMatrix.java │ ├── DependencyType.java │ ├── ExprConclusionLine.java │ ├── IterateLine.java │ ├── LineType.java │ ├── MetaType.java │ ├── MetadataLine.java │ ├── Node.java │ ├── NodeSet.java │ ├── Record.java │ └── ValueConclusionLine.java ├── ruleParser │ ├── ILineReader.java │ ├── IScanFeeder.java │ ├── RuleSetParser.java │ ├── RuleSetReader.java │ ├── RuleSetScanner.java │ ├── Tokenizer.java │ └── Tokens.java ├── testingPackage │ ├── DeanTest.java │ ├── deepeningTest │ │ └── DeepeningSortingTest.java │ ├── inferenceEngineTest │ │ ├── Fact.java │ │ ├── InferenceEngineTest.java │ │ └── leaf node set.txt │ ├── testing1 │ │ ├── TokenizerTesting_1.java │ │ └── Tokenizer_Testing.txt │ ├── testing10 │ │ ├── Comparison Testing for ALL Node Lines and features.txt │ │ ├── Testing for ALL Node Lines and features.txt │ │ └── Testing_for_ALL_Node_Lines_and_features_10.java │ ├── testing2 │ │ ├── TopoSortingTest_2.java │ │ ├── ToposortedNodeName.txt │ │ └── Wedding Planner.txt │ ├── testing3 │ │ ├── Wedding Planner.txt │ │ ├── WeddingPlanner_Inference_Test_3.java │ │ └── Wedding_Planner Inference Test.txt │ ├── testing4 │ │ ├── Comparison File For Reading Not Known Man Op Pos file.txt │ │ ├── TestingForReadingNotKnownMandatoryPossiblyAndOptionally_4.java │ │ └── testing NOT, KNOWN, Mandatory, Possibly, and Optionally.txt │ ├── testing5 │ │ ├── TestingInferenceForNotKnownManOpPo_5.java │ │ ├── testing NOT, KNOWN, Mandatory, Possibly, and Optionally inference.txt │ │ └── testing NOT, KNOWN, Mandatory, Possibly, and Optionally.txt │ ├── testing6 │ │ ├── Testing ValueConclusionLine Comparison.txt │ │ ├── Testing ValueConclusionLine with NOT, KNOW, IS, and IS IN LIST features.txt │ │ └── Testing_ValueConclusionLine_6.java │ ├── testing7 │ │ ├── Comparison for Testing full ValueConclusion and Comparison.txt │ │ ├── Tesing_Full_ValueConclusion_Comparison_7.java │ │ └── Testing full ValueConclusion and Comparison.txt │ ├── testing8 │ │ ├── Comparison Testing for Whole features of ValueConclusionLine and ComparisonLine.txt │ │ ├── Testing for whole features of ValueConclusionLine and ComparisonLine.txt │ │ └── Testing_Whole_Features_Of_ValueConclusionLIne_and_ComparisonLine_8.java │ └── testing9 │ │ ├── Comparison for testing whole features of ValueConclusionLine, ComparisonLine and ExprConclusionLine.txt │ │ ├── Testing for whole features of ValueConclusionLine, ComparisonLine and ExprConclusionLine.txt │ │ └── Testing_Whole_Features_Of_ValueConclusionLine_ComparisonLine_and_ExprConclusionLine_9.java └── testingUtilPackage │ └── NodeObject_For_Inference_Test.java ├── testingFile_For_A_IS_B_Type_Rule.txt └── testingRuleFile.txt /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/4.4/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/4.4/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.gradle/4.4/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /.gradle/4.4/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.gradle/4.4/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /.gradle/4.4/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.gradle/4.4/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Jan 09 16:37:00 AEDT 2018 2 | gradle.version=4.4 3 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.project -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jst.j2ee.ejb.annotations.xdoclet.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.settings/org.eclipse.jst.j2ee.ejb.annotations.xdoclet.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jst.ws.cxf.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.settings/org.eclipse.jst.ws.cxf.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.settings/org.eclipse.wst.common.project.facet.core.prefs.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/README.md -------------------------------------------------------------------------------- /WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/_config.yml -------------------------------------------------------------------------------- /bin/testingPackage/inferenceEngineTest/leaf node set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/inferenceEngineTest/leaf node set.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing1/Tokenizer_Testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing1/Tokenizer_Testing.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing10/Comparison Testing for ALL Node Lines and features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing10/Comparison Testing for ALL Node Lines and features.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing10/Testing for ALL Node Lines and features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing10/Testing for ALL Node Lines and features.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing2/ToposortedNodeName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing2/ToposortedNodeName.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing2/Wedding Planner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing2/Wedding Planner.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing3/Wedding Planner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing3/Wedding Planner.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing3/Wedding_Planner Inference Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing3/Wedding_Planner Inference Test.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing4/Comparison File For Reading Not Known Man Op Pos file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing4/Comparison File For Reading Not Known Man Op Pos file.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing4/testing NOT, KNOWN, Mandatory, Possibly, and Optionally.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing4/testing NOT, KNOWN, Mandatory, Possibly, and Optionally.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing5/testing NOT, KNOWN, Mandatory, Possibly, and Optionally inference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing5/testing NOT, KNOWN, Mandatory, Possibly, and Optionally inference.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing5/testing NOT, KNOWN, Mandatory, Possibly, and Optionally.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing5/testing NOT, KNOWN, Mandatory, Possibly, and Optionally.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing6/Testing ValueConclusionLine Comparison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing6/Testing ValueConclusionLine Comparison.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing6/Testing ValueConclusionLine with NOT, KNOW, IS, and IS IN LIST features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing6/Testing ValueConclusionLine with NOT, KNOW, IS, and IS IN LIST features.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing7/Comparison for Testing full ValueConclusion and Comparison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing7/Comparison for Testing full ValueConclusion and Comparison.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing7/Testing full ValueConclusion and Comparison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing7/Testing full ValueConclusion and Comparison.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing8/Comparison Testing for Whole features of ValueConclusionLine and ComparisonLine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing8/Comparison Testing for Whole features of ValueConclusionLine and ComparisonLine.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing8/Testing for whole features of ValueConclusionLine and ComparisonLine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing8/Testing for whole features of ValueConclusionLine and ComparisonLine.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing9/Comparison for testing whole features of ValueConclusionLine, ComparisonLine and ExprConclusionLine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing9/Comparison for testing whole features of ValueConclusionLine, ComparisonLine and ExprConclusionLine.txt -------------------------------------------------------------------------------- /bin/testingPackage/testing9/Testing for whole features of ValueConclusionLine, ComparisonLine and ExprConclusionLine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/bin/testingPackage/testing9/Testing for whole features of ValueConclusionLine, ComparisonLine and ExprConclusionLine.txt -------------------------------------------------------------------------------- /src/factValuePackage/FactBooleanValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/factValuePackage/FactBooleanValue.java -------------------------------------------------------------------------------- /src/factValuePackage/FactDateValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/factValuePackage/FactDateValue.java -------------------------------------------------------------------------------- /src/factValuePackage/FactDefiStringValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/factValuePackage/FactDefiStringValue.java -------------------------------------------------------------------------------- /src/factValuePackage/FactDoubleValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/factValuePackage/FactDoubleValue.java -------------------------------------------------------------------------------- /src/factValuePackage/FactHashValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/factValuePackage/FactHashValue.java -------------------------------------------------------------------------------- /src/factValuePackage/FactIntegerValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/factValuePackage/FactIntegerValue.java -------------------------------------------------------------------------------- /src/factValuePackage/FactListValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/factValuePackage/FactListValue.java -------------------------------------------------------------------------------- /src/factValuePackage/FactStringValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/factValuePackage/FactStringValue.java -------------------------------------------------------------------------------- /src/factValuePackage/FactURLValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/factValuePackage/FactURLValue.java -------------------------------------------------------------------------------- /src/factValuePackage/FactUUIDValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/factValuePackage/FactUUIDValue.java -------------------------------------------------------------------------------- /src/factValuePackage/FactValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/factValuePackage/FactValue.java -------------------------------------------------------------------------------- /src/factValuePackage/FactValueType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/factValuePackage/FactValueType.java -------------------------------------------------------------------------------- /src/inferencePackage/Assessment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/inferencePackage/Assessment.java -------------------------------------------------------------------------------- /src/inferencePackage/AssessmentState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/inferencePackage/AssessmentState.java -------------------------------------------------------------------------------- /src/inferencePackage/InferenceEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/inferencePackage/InferenceEngine.java -------------------------------------------------------------------------------- /src/inferencePackage/TopoSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/inferencePackage/TopoSort.java -------------------------------------------------------------------------------- /src/nodePackage/ComparisonLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/nodePackage/ComparisonLine.java -------------------------------------------------------------------------------- /src/nodePackage/Dependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/nodePackage/Dependency.java -------------------------------------------------------------------------------- /src/nodePackage/DependencyMatrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/nodePackage/DependencyMatrix.java -------------------------------------------------------------------------------- /src/nodePackage/DependencyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/nodePackage/DependencyType.java -------------------------------------------------------------------------------- /src/nodePackage/ExprConclusionLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/nodePackage/ExprConclusionLine.java -------------------------------------------------------------------------------- /src/nodePackage/IterateLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/nodePackage/IterateLine.java -------------------------------------------------------------------------------- /src/nodePackage/LineType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/nodePackage/LineType.java -------------------------------------------------------------------------------- /src/nodePackage/MetaType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/nodePackage/MetaType.java -------------------------------------------------------------------------------- /src/nodePackage/MetadataLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/nodePackage/MetadataLine.java -------------------------------------------------------------------------------- /src/nodePackage/Node.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/nodePackage/Node.java -------------------------------------------------------------------------------- /src/nodePackage/NodeSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/nodePackage/NodeSet.java -------------------------------------------------------------------------------- /src/nodePackage/Record.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/nodePackage/Record.java -------------------------------------------------------------------------------- /src/nodePackage/ValueConclusionLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/nodePackage/ValueConclusionLine.java -------------------------------------------------------------------------------- /src/ruleParser/ILineReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/ruleParser/ILineReader.java -------------------------------------------------------------------------------- /src/ruleParser/IScanFeeder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/ruleParser/IScanFeeder.java -------------------------------------------------------------------------------- /src/ruleParser/RuleSetParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/ruleParser/RuleSetParser.java -------------------------------------------------------------------------------- /src/ruleParser/RuleSetReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/ruleParser/RuleSetReader.java -------------------------------------------------------------------------------- /src/ruleParser/RuleSetScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/ruleParser/RuleSetScanner.java -------------------------------------------------------------------------------- /src/ruleParser/Tokenizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/ruleParser/Tokenizer.java -------------------------------------------------------------------------------- /src/ruleParser/Tokens.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/ruleParser/Tokens.java -------------------------------------------------------------------------------- /src/testingPackage/DeanTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/DeanTest.java -------------------------------------------------------------------------------- /src/testingPackage/deepeningTest/DeepeningSortingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/deepeningTest/DeepeningSortingTest.java -------------------------------------------------------------------------------- /src/testingPackage/inferenceEngineTest/Fact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/inferenceEngineTest/Fact.java -------------------------------------------------------------------------------- /src/testingPackage/inferenceEngineTest/InferenceEngineTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/inferenceEngineTest/InferenceEngineTest.java -------------------------------------------------------------------------------- /src/testingPackage/inferenceEngineTest/leaf node set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/inferenceEngineTest/leaf node set.txt -------------------------------------------------------------------------------- /src/testingPackage/testing1/TokenizerTesting_1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing1/TokenizerTesting_1.java -------------------------------------------------------------------------------- /src/testingPackage/testing1/Tokenizer_Testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing1/Tokenizer_Testing.txt -------------------------------------------------------------------------------- /src/testingPackage/testing10/Comparison Testing for ALL Node Lines and features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing10/Comparison Testing for ALL Node Lines and features.txt -------------------------------------------------------------------------------- /src/testingPackage/testing10/Testing for ALL Node Lines and features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing10/Testing for ALL Node Lines and features.txt -------------------------------------------------------------------------------- /src/testingPackage/testing10/Testing_for_ALL_Node_Lines_and_features_10.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing10/Testing_for_ALL_Node_Lines_and_features_10.java -------------------------------------------------------------------------------- /src/testingPackage/testing2/TopoSortingTest_2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing2/TopoSortingTest_2.java -------------------------------------------------------------------------------- /src/testingPackage/testing2/ToposortedNodeName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing2/ToposortedNodeName.txt -------------------------------------------------------------------------------- /src/testingPackage/testing2/Wedding Planner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing2/Wedding Planner.txt -------------------------------------------------------------------------------- /src/testingPackage/testing3/Wedding Planner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing3/Wedding Planner.txt -------------------------------------------------------------------------------- /src/testingPackage/testing3/WeddingPlanner_Inference_Test_3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing3/WeddingPlanner_Inference_Test_3.java -------------------------------------------------------------------------------- /src/testingPackage/testing3/Wedding_Planner Inference Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing3/Wedding_Planner Inference Test.txt -------------------------------------------------------------------------------- /src/testingPackage/testing4/Comparison File For Reading Not Known Man Op Pos file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing4/Comparison File For Reading Not Known Man Op Pos file.txt -------------------------------------------------------------------------------- /src/testingPackage/testing4/TestingForReadingNotKnownMandatoryPossiblyAndOptionally_4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing4/TestingForReadingNotKnownMandatoryPossiblyAndOptionally_4.java -------------------------------------------------------------------------------- /src/testingPackage/testing4/testing NOT, KNOWN, Mandatory, Possibly, and Optionally.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing4/testing NOT, KNOWN, Mandatory, Possibly, and Optionally.txt -------------------------------------------------------------------------------- /src/testingPackage/testing5/TestingInferenceForNotKnownManOpPo_5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing5/TestingInferenceForNotKnownManOpPo_5.java -------------------------------------------------------------------------------- /src/testingPackage/testing5/testing NOT, KNOWN, Mandatory, Possibly, and Optionally inference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing5/testing NOT, KNOWN, Mandatory, Possibly, and Optionally inference.txt -------------------------------------------------------------------------------- /src/testingPackage/testing5/testing NOT, KNOWN, Mandatory, Possibly, and Optionally.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing5/testing NOT, KNOWN, Mandatory, Possibly, and Optionally.txt -------------------------------------------------------------------------------- /src/testingPackage/testing6/Testing ValueConclusionLine Comparison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing6/Testing ValueConclusionLine Comparison.txt -------------------------------------------------------------------------------- /src/testingPackage/testing6/Testing ValueConclusionLine with NOT, KNOW, IS, and IS IN LIST features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing6/Testing ValueConclusionLine with NOT, KNOW, IS, and IS IN LIST features.txt -------------------------------------------------------------------------------- /src/testingPackage/testing6/Testing_ValueConclusionLine_6.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing6/Testing_ValueConclusionLine_6.java -------------------------------------------------------------------------------- /src/testingPackage/testing7/Comparison for Testing full ValueConclusion and Comparison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing7/Comparison for Testing full ValueConclusion and Comparison.txt -------------------------------------------------------------------------------- /src/testingPackage/testing7/Tesing_Full_ValueConclusion_Comparison_7.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing7/Tesing_Full_ValueConclusion_Comparison_7.java -------------------------------------------------------------------------------- /src/testingPackage/testing7/Testing full ValueConclusion and Comparison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing7/Testing full ValueConclusion and Comparison.txt -------------------------------------------------------------------------------- /src/testingPackage/testing8/Comparison Testing for Whole features of ValueConclusionLine and ComparisonLine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing8/Comparison Testing for Whole features of ValueConclusionLine and ComparisonLine.txt -------------------------------------------------------------------------------- /src/testingPackage/testing8/Testing for whole features of ValueConclusionLine and ComparisonLine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing8/Testing for whole features of ValueConclusionLine and ComparisonLine.txt -------------------------------------------------------------------------------- /src/testingPackage/testing8/Testing_Whole_Features_Of_ValueConclusionLIne_and_ComparisonLine_8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing8/Testing_Whole_Features_Of_ValueConclusionLIne_and_ComparisonLine_8.java -------------------------------------------------------------------------------- /src/testingPackage/testing9/Comparison for testing whole features of ValueConclusionLine, ComparisonLine and ExprConclusionLine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing9/Comparison for testing whole features of ValueConclusionLine, ComparisonLine and ExprConclusionLine.txt -------------------------------------------------------------------------------- /src/testingPackage/testing9/Testing for whole features of ValueConclusionLine, ComparisonLine and ExprConclusionLine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing9/Testing for whole features of ValueConclusionLine, ComparisonLine and ExprConclusionLine.txt -------------------------------------------------------------------------------- /src/testingPackage/testing9/Testing_Whole_Features_Of_ValueConclusionLine_ComparisonLine_and_ExprConclusionLine_9.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingPackage/testing9/Testing_Whole_Features_Of_ValueConclusionLine_ComparisonLine_and_ExprConclusionLine_9.java -------------------------------------------------------------------------------- /src/testingUtilPackage/NodeObject_For_Inference_Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/src/testingUtilPackage/NodeObject_For_Inference_Test.java -------------------------------------------------------------------------------- /testingFile_For_A_IS_B_Type_Rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/testingFile_For_A_IS_B_Type_Rule.txt -------------------------------------------------------------------------------- /testingRuleFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeanLee77/PALOS-Engine/HEAD/testingRuleFile.txt --------------------------------------------------------------------------------