Skip to content

Commit

Permalink
Fix broken MVAR in "slow" matching
Browse files Browse the repository at this point in the history
Regression bug due to 345bd86.

Fixes #543.
  • Loading branch information
coldfix committed Mar 1, 2018
1 parent c1a303d commit 7ef24c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mad_const.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ fill_constraint_list(int type /* 1 node, 2 global */,
struct command_parameter_list* pl = cd->par;
struct name_list* nl = cd->par_names;
struct constraint* l_cons;
int j, find_npos = type == 1 && !get_option("slow");
int j, find_npos = type == 1 && !get_option("slow_match");
struct command* weights = type == 1 ? current_weight : current_gweight;
double weight = command_par_value("weight", cd);
int use_weight = par_present("weight", cd);
Expand Down

0 comments on commit 7ef24c6

Please sign in to comment.