Changeset cfeba61 in git


Ignore:
Timestamp:
Oct 20, 2017, 1:29:17 PM (6 years ago)
Author:
Karim Abou Zeid <karim23697@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
4704f1f58e76fe37b2ac4d5e330d86117c6c852c
Parents:
ab9c19e5027dbf17f59903dc756a2a6b982f3532
Message:
Fix bug in gk dim computation
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/fpadim.lib

    rab9c19 rcfeba61  
    12381238static proc eliminateZerosUpTriangle(intmat G) {
    12391239  // G is expected to be an upper triangle matrix
    1240   for (int i = 1; i <= ncols(G); i++) {
     1240  for (int i = ncols(G); i >= 1; i--) { // loop order is important because we delete entries
    12411241    if (G[i,i] == 0) { // i doesn't have a cycle
    12421242      for (int j = 1; j < i; j++) {
Note: See TracChangeset for help on using the changeset viewer.