Package | Description |
---|---|
org.licas.ai_solver |
Problem-solving packages, this includes base factory classes, categorised, that can be extended.
|
org.licas.ai_solver.mediator |
The problem-solving tests are mediated from the classes of this and sub-packages,
as the central location to send/receive messages, initialise values, etc.
|
org.licas.ai_solver.parser |
For parsing problem-solver specifications and descriptions.
|
org.licas.ai_solver.spec |
Problem-solver specifications and descriptions that define how and what tests are run,
and also start the problem-solving process.
|
org.licas.ai_solver.spec.test |
Test specifications can store intermediary value sets that then get copied to the problem
specifications, but also other values, relating to how the test process runs, so all
of the specification is initially stored here.
|
Modifier and Type | Method and Description |
---|---|
ProblemScript |
DefaultSolverSpecs.getProblemScript(java.lang.String solverType)
Get the problem script object related to the current problem type.
|
abstract ProblemScript |
SolverSpecs.getProblemScript(java.lang.String solverType)
Get the problem script object related to the current problem type.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ProblemSolverMediator.initialiseServerInfo(ProblemScript theServiceSpec)
Initialise the solver mediator with the server details.
|
Modifier and Type | Method and Description |
---|---|
ProblemScript |
ProblemScriptParser.parse(org.licas_xml.abs.Element scriptXml)
Parse the file path to create a test script for creating the test scenario from.
|
ProblemScript |
ProblemScriptParser.parseFile(java.lang.String filePath)
Parse the file path to create a test script for creating the test scenario from.
|
Modifier and Type | Method and Description |
---|---|
org.licas_xml.abs.Element |
GridProblemScriptParser.serialize(ProblemScript testScript,
boolean forDisplay)
Serialize the test script into XML.
|
org.licas_xml.abs.Element |
KnnProblemScriptParser.serialize(ProblemScript testScript,
boolean forDisplay)
Serialize the test script into XML.
|
org.licas_xml.abs.Element |
ProblemScriptParser.serialize(ProblemScript testScript,
boolean forDisplay)
Serialize the test script into XML.
|
org.licas_xml.abs.Element |
SomProblemScriptParser.serialize(ProblemScript testScript,
boolean forDisplay)
Serialize the test script into XML.
|
Modifier and Type | Class and Description |
---|---|
class |
GridProblemScript
This class reads an XML file and loads in a specification for a set of test runs.
|
class |
KnnProblemScript
This class reads an XML file and loads in a specification for a set of test runs.
|
class |
SomProblemScript
This class reads an XML file and loads in a specification for a set of test runs.
|
Modifier and Type | Field and Description |
---|---|
protected ProblemScript |
TestSpec.problemScript
The test script
|
Modifier and Type | Method and Description |
---|---|
ProblemScript |
TestSpec.getTestScript()
get the stored test script with the test specification.
|
Modifier and Type | Method and Description |
---|---|
void |
TestSpec.setTestScript(ProblemScript thisTestScript)
Set the test specification.
|