Class TriGen1

java.lang.Object
  extended by TriGenerator
      extended by TriGen1

public class TriGen1
extends TriGenerator


Constructor Summary
TriGen1(int n)
          Create a generator for all triangulations of order n and no TriProcessor.
TriGen1(int n, TriProcessor triProcessor)
          Create a generator for all triangulations of order n with the given triangulation processor.
 
Method Summary
 void generate()
           
static void main(String[] args)
           
 void printCounts()
           
 void stopGenerating()
           
 
Methods inherited from class TriGenerator
buildCatalog, getTriProcessor
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TriGen1

public TriGen1(int n,
               TriProcessor triProcessor)
Create a generator for all triangulations of order n with the given triangulation processor.

Parameters:
n - number of vertices in the triangulations
triProcessor - the triangulation processor

TriGen1

public TriGen1(int n)
Create a generator for all triangulations of order n and no TriProcessor. Same as TriGen(n,null).

Parameters:
n - number of vertices in the triangulations
Method Detail

generate

public void generate()
Specified by:
generate in class TriGenerator

printCounts

public void printCounts()

stopGenerating

public void stopGenerating()
Specified by:
stopGenerating in class TriGenerator

main

public static void main(String[] args)