* This is the skeleton for an ernm extension package.

* MinDegree.h and MinDegree.cpp illustrate how to extend ernm to
  include a custom statistic.

* ernm_hello_world.h and ernm_hello_world.cpp show a simple example 
  C++ function using both Rcpp and ernm.

* If code in source is edited run 
	library(Rcpp)
 	compileAttributes() 
  within the package directory to update the Rcpp attribute generated 
  files.

* Documentation is updated using 
	library(Rcpp)
	compileAttributes()
	library(roxygen2)
	roxygenize('.',roclets='rd')
