Skip to content
Snippets Groups Projects
Commit 5c1dd936 authored by Bernhard Johannes Berger's avatar Bernhard Johannes Berger
Browse files

Exporting required module to weld. Fix #32

parent ded28d37
No related branches found
No related tags found
No related merge requests found
Pipeline #257778 passed
......@@ -50,20 +50,6 @@ public class EvolutionaryAlgorithmSearch implements OptimisationAlgorithm {
@Inject
private LanguageHelper helper;
/**
* Location for storing the output.
*/
@Inject
@BlackboardValue(CoreBlackboardEntries.EVALUATION_OUTPUT_FOLDER)
private File outputDirectory;
/**
* The actual run
*/
@Inject
@BlackboardValue(CoreBlackboardEntries.EVALUATION_RUN)
private String run;
@Inject
@ConfigurationValue(entry = CoreBlackboardEntries.OPTIMISATION_CONFIGURATION, access = "algorithm.number-of-generations")
private int numberOfGenerations;
......
......@@ -81,6 +81,7 @@ module de.evoal.core.main {
opens de.evoal.core.main.constraints.correlation to weld.core.impl;
opens de.evoal.core.main.constraints.deviation to weld.core.impl;
opens de.evoal.core.main.initial to weld.core.impl;
opens de.evoal.core.main.language to weld.core.impl;
opens de.evoal.core.main.optimisation to weld.core.impl;
opens de.evoal.core.main.producer to weld.core.impl;
opens de.evoal.core.main.properties to weld.core.impl;
......@@ -93,6 +94,5 @@ module de.evoal.core.main {
opens de.evoal.core.api.statistics.io to weld.core.impl;
opens de.evoal.core.api.statistics.writer to weld.core.impl;
//provides de.evoal.languages.model.utils.builtin.BuiltinProvider with ModuleBuiltinProvider;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment