public InitialGenerator(RevWalk w, Generator s, BoundaryGenerator parent) // [henon] parent needed because we cannot access outer instances in C# { walk = w; held = new FIFORevQueue(); source = s; source.shareFreeList(held); this.parent = parent; }
// [henon] parent needed because we cannot access outer instances in C# public InitialGenerator(RevWalk w, Generator s, BoundaryGenerator parent) { _walk = w; _held = new FIFORevQueue(); _source = s; _source.shareFreeList(_held); _parent = parent; }