Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
SimAquaLife
GR3D
Commits
85844713
Commit
85844713
authored
Apr 23, 2021
by
patrick.lambert
Browse files
new run
parent
73806de8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/analysis/EasyRun.java
View file @
85844713
...
...
@@ -55,7 +55,6 @@ public class EasyRun {
public
static
void
runSimulation
(
String
[]
batchArgs
,
String
[]
paramNameaANG
,
double
[]
paramValuesANG
,
String
[]
paramNameaENV
,
String
[]
paramValuesENV
)
throws
Exception
{
// TODO parse string to other type if needed
try
{
pilot
=
new
Pilot
();
BatchRunner
runner
=
new
BatchRunner
(
pilot
);
...
...
@@ -156,13 +155,14 @@ public class EasyRun {
System
.
out
.
println
(
"\n== AnalyseLikelihoodOfPresence =="
);
System
.
out
.
println
(
getSingleValueFromAquanismGroupProcess
(
"processes.processesAtEnd.0.getLogLikelihood"
));
System
.
out
.
println
(
"\n== ExportExchangeSBetweenCatchments =="
);
String
[][]
exchangeSBetweenCatchments
=
getValuesFromAquanismGroupProcess
(
"processes.processesEachStep.16.exportToR"
);
for
(
String
[]
record
:
exchangeSBetweenCatchments
)
{
for
(
String
value
:
record
)
System
.
out
.
print
(
value
+
"\t"
);
System
.
out
.
println
();
}
// System.out.println("\n== ExportExchangeSBetweenCatchments ==");
// String[][] exchangeSBetweenCatchments =
// getValuesFromAquanismGroupProcess("processes.processesEachStep.16.exportToR");
// for (String[] record : exchangeSBetweenCatchments) {
// for (String value : record)
// System.out.print(value + "\t");
// System.out.println();
// }
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment