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
// As a special case, if the action we were going to insert is the same
343
343
// as the one that's already there, we give a warning and continue.
344
344
if table.get(&(state_id, terminal.clone())) == Some(&action){
345
-
eprintln!(
346
-
"WARNING: While inserting an action into the action table, we found the same action we were going to insert.\nstate_id: {state_id}, terminal: {:#?}, existing action: {:#?}, new action: {:#?}",
347
-
terminal.clone(),
348
-
table.get(&(state_id, terminal.clone())),
349
-
action
350
-
);
345
+
// eprintln!(
346
+
// "WARNING: While inserting an action into the action table, we found the same action we were going to insert.\nstate_id: {state_id}, terminal: {:#?}, existing action: {:#?}, new action: {:#?}",
347
+
// terminal.clone(),
348
+
// table.get(&(state_id, terminal.clone())),
349
+
// action
350
+
// );
351
351
}else{
352
352
panic!(
353
353
"While inserting an action into the action table, discovered a conflicting action:\nstate_id: {state_id}, terminal: {:#?}, existing action: {:#?}, new action: {:#?}",
0 commit comments