Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. sparse.c:359:17: note: instantiated from:
  2. mem_bytes(TYPE_SPMAT,0,sizeof(SPMAT));
  3. ^
  4. sparse.c:360:7: error: use of undeclared identifier 'TYPE_SPMAT'
  5. mem_numvar(TYPE_SPMAT,1);
  6. ^
  7. sparse.c:360:18: note: instantiated from:
  8. mem_numvar(TYPE_SPMAT,1);
  9. ^
  10. sparse.c:368:7: error: use of undeclared identifier 'TYPE_SPMAT'
  11. mem_bytes(TYPE_SPMAT,0,A->m*sizeof(SPROW));
  12. ^
  13. sparse.c:368:17: note: instantiated from:
  14. mem_bytes(TYPE_SPMAT,0,A->m*sizeof(SPROW));
  15. ^
  16. sparse.c:377:3: error: use of undeclared identifier 'TYPE_SPMAT'
  17. mem_bytes(TYPE_SPMAT,0,max(row1->len,3)*sizeof(row_elt));
  18. ^
  19. sparse.c:377:13: note: instantiated from:
  20. mem_bytes(TYPE_SPMAT,0,max(row1->len,3)*sizeof(row_elt));
  21. ^
  22. sparse.c:391:7: error: use of undeclared identifier 'TYPE_SPMAT'
  23. mem_bytes(TYPE_SPMAT,0,2*A->n*sizeof(int));
  24. ^
  25. sparse.c:391:17: note: instantiated from:
  26. mem_bytes(TYPE_SPMAT,0,2*A->n*sizeof(int));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement