Skip to content

Commit

Permalink
- fix tests
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@12804 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Jens Frenkel committed Sep 6, 2012
1 parent 11c1edc commit c3aeacd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Compiler/Util/Flags.mo
Expand Up @@ -518,7 +518,7 @@ public constant ConfigFlag PRE_OPT_MODULES = CONFIG_FLAG(12, "preOptModules",
"removeEqualFunctionCalls",
"partitionIndependentBlocks",
"expandDerOperator",
// "inlineArrayEqn",
"inlineArrayEqn",
"removeSimpleEquationsFast"
}),
SOME(STRING_DESC_OPTION({
Expand Down Expand Up @@ -546,7 +546,7 @@ constant ConfigFlag CHEAPMATCHING_ALGORITHM = CONFIG_FLAG(13, "cheapmatchingAlgo
("3", Util.gettext("Random Karp-Sipser: R. M. Karp and M. Sipser. Maximum matching in sparse random graphs."))})),
Util.gettext("Sets the cheap matching algorithm to use. A cheap matching algorithm gives a jump start matching by heuristics."));
constant ConfigFlag MATCHING_ALGORITHM = CONFIG_FLAG(14, "matchingAlgorithm",
NONE(), EXTERNAL(), STRING_FLAG("PFPlusExt"),
NONE(), EXTERNAL(), STRING_FLAG("omc"),
SOME(STRING_DESC_OPTION({
("omc", Util.gettext("Depth First Search based Algorithm with simple Look Ahead Feature")),
("BFSB", Util.gettext("Breath First Search based Algorithm")),
Expand All @@ -569,7 +569,7 @@ constant ConfigFlag MATCHING_ALGORITHM = CONFIG_FLAG(14, "matchingAlgorithm",
("PRExt", Util.gettext("matching algorithm using push relabel mechanism external c implementation"))})),
Util.gettext("Sets the matching algorithm to use."));
constant ConfigFlag INDEX_REDUCTION_METHOD = CONFIG_FLAG(15, "indexReductionMethod",
NONE(), EXTERNAL(), STRING_FLAG("dynamicStateSelection"),
NONE(), EXTERNAL(), STRING_FLAG("dummyDerivative"),
SOME(STRING_DESC_OPTION({
("dummyDerivative", Util.gettext("simple index reduction method, select dummy states based on heuristics")),
("dynamicStateSelection", Util.gettext("simple index reduction method, select (dynamic) dummy states based on analysis of the system"))})),
Expand Down

0 comments on commit c3aeacd

Please sign in to comment.