Fixing pointers.
[COLAMDJ.git] / src / main / java / edu / ufl / cise / colamd / tdouble / Colamd_Row.java
bloba71bcb8e54c582eb67d860057c628c3e7cf7d67b
1 package edu.ufl.cise.colamd.tdouble;
3 public class Colamd_Row {
5 public Colamd_Row() {
9 /* index for A of first col in this row */
10 public int start ;
11 /* number of principal columns in this row */
12 public int length ;
14 /* number of principal & non-principal columns in row */
15 public int degree ;
16 /* used as a row pointer in init_rows_cols () */
17 public int p ;
19 /* for computing set differences and marking dead rows*/
20 public int mark ;
21 /* first column in row (used in garbage collection) */
22 public int first_column ;