Guest User

Untitled

a guest
Jan 23rd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. size_t total = rows * cols;
  2. size_t max_size = fa.max_size();
  3. printf("total = %u max_size = %u\n", total, max_size);
  4. assert(total <= max_size);
  5.  
  6.  
  7. STDOUT
  8. 53081 rows, 41500 columns, 144120 non-zeros
  9. 1980 integer variables, all of which are binary
  10. 158706 records were read
  11. total = 2202861500 max_size = 4294967295
  12. Assertion failed: (total <= max_size), function load_mps, file src/lp_problem.cpp, line 292.
  13.  
  14. Program received signal SIGABRT, Aborted.
  15. 0x00007fff88adf616 in __kill ()
Add Comment
Please, Sign In to add comment