You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like another ::export that accept a vararg, in this way I may simply type
export(
"JAVA_OPTS" to "-Xms82G -Xmx82G -XX:+UseParallelGC",
"EPISIM_SETUP" to "org.matsim.run.batch.DresdenCalibration",
"EPISIM_PARAMS" to "org.matsim.run.batch.DresdenCalibration$Params",
"EPISIM_INPUT" to "dresden",
"EPISIM_OUTPUT" to "output-dresden")
The text was updated successfully, but these errors were encountered:
listOf(
|"JAVA_OPTS" to "-Xms82G -Xmx82G -XX:+UseParallelGC",
"EPISIM_SETUP" to "org.matsim.run.batch.DresdenCalibration",
"EPISIM_PARAMS" to "org.matsim.run.batch.DresdenCalibration$Params",
"EPISIM_INPUT" to "dresden",
"EPISIM_OUTPUT" to "output-dresden"
).forEach { export(it)}
fun exports(vararg exports: Pair<String, String>) = exports.map { export(it) }
exports(
"JAVA_OPTS" to "-Xms82G -Xmx82G -XX:+UseParallelGC",
"EPISIM_SETUP" to "org.matsim.run.batch.DresdenCalibration",
"EPISIM_PARAMS" to "org.matsim.run.batch.DresdenCalibration\$Params",
"EPISIM_INPUT" to "dresden",
"EPISIM_OUTPUT" to "output-dresden")
Hi,
super cool project!
I need to define multiple
export
s like:I'd like another
::export
that accept avararg
, in this way I may simply typeThe text was updated successfully, but these errors were encountered: