Uses of Class
dev.zemco.codegame.programs.Program
Packages that use Program
Package
Description
Components related to compilation of source code into executable programs.
Provides evaluation capabilities of executions to the application.
Provides execution capabilities to the application.
Provides instruction execution capabilities to execution.
Components related to programs executable by the application.
-
Uses of Program in dev.zemco.codegame.compilation
Methods in dev.zemco.codegame.compilation that return ProgramModifier and TypeMethodDescriptionCodeProgramCompiler.compileProgram(String sourceCode) IProgramCompiler.compileProgram(String sourceCode) Compiles given source code into an executableprogram. -
Uses of Program in dev.zemco.codegame.evaluation
Methods in dev.zemco.codegame.evaluation with parameters of type ProgramModifier and TypeMethodDescriptionbooleanEvaluationService.evaluateSolutionOnAllProblemCases(Program solution, Problem problem) booleanIEvaluationService.evaluateSolutionOnAllProblemCases(Program solution, Problem problem) EvaluationService.getEvaluatorForProblemCaseSolution(Program solution, ProblemCase problemCase) IEvaluationService.getEvaluatorForProblemCaseSolution(Program solution, ProblemCase problemCase) -
Uses of Program in dev.zemco.codegame.execution
Methods in dev.zemco.codegame.execution with parameters of type ProgramModifier and TypeMethodDescriptionIExecutionService.getExecutionContextForProblemCaseSolution(Program solution, ProblemCase problemCase) ProgramExecutionService.getExecutionContextForProblemCaseSolution(Program solution, ProblemCase problemCase) -
Uses of Program in dev.zemco.codegame.execution.engine
Constructors in dev.zemco.codegame.execution.engine with parameters of type ProgramModifierConstructorDescriptionProgramExecutionEngine(Program program, IMemory memory, IInputSource inputSource, IOutputSink outputSink) Creates an instance ofProgramExecutionEnginethat executes a givenprogram. -
Uses of Program in dev.zemco.codegame.programs
Methods in dev.zemco.codegame.programs that return Program