package orientation3;
import org.apache.commons.math.random.RandomDataImpl;
import org.apache.commons.math.random.RandomGenerator;
import org.apache.commons.math.random.Well44497b;
public class RunMCMC {
public static void main(String[] args){
//-------------- random number generator -----------------
RandomGenerator rg = new Well44497b();
RandomDataImpl rng = new RandomDataImpl(rg);
//--------------- initial data points ----------------
//-----initial currentPartition and proposedPartition---------
//partition prior
//parameter prior
//LLH
//proposal path
//
//------ initial capacity for posterior draws -----------------
}
}