> I would be grateful if somebody could tell me whether the name argument > that can be passed in the search tree glp_ios_add_row function can be > used afterwards for some purpose, e.g., to access that row as with the > problem function glp_find_row. >
Yes, you can use the name passed to glp_ios_add_row to find the row with glp_find_row. Note, however, that glp_ios_add_row adds the row to the local cut pool, not to the problem object (unlike glp_add_rows), so it may happen that for some reasons the mip solver does not include that row in the problem object at the end of the round and just discards it. _______________________________________________ Help-glpk mailing list [email protected] https://lists.gnu.org/mailman/listinfo/help-glpk
