opennlp-similarity/src/main/java/opennlp/tools/fca/ConceptLattice.java [43:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		this.conceptList = new ArrayList<>();
		FormalConcept bottom = new FormalConcept();
		bottom.setPosition(0);
		conceptList.add(bottom);
		ms = new Measures(this);
		blm = new BasicLevelMetrics(this);		
		if (this.binaryContext !=null)
			createLatticeFromBinaryContext();
		if (stats){
			ms.logStabilityExt();
			ms.separation();	
			ms.probability();
			blm.cueValidity();
			blm.categoryFeatureCollocation();
			blm.categoryUtility();
			blm.predictability();
			blm.similarityGoguenNorm();		
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



opennlp-similarity/src/main/java/opennlp/tools/fca/ConceptLattice.java [71:87]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		this.conceptList = new ArrayList<>();
		FormalConcept bottom = new FormalConcept();
		bottom.setPosition(0);
		conceptList.add(bottom);
		ms = new Measures(this);
		blm = new BasicLevelMetrics(this);
		if (this.binaryContext !=null)
			createLatticeFromBinaryContext();
		if (stats){
			ms.logStabilityExt();
			ms.separation();	
			ms.probability();
			blm.cueValidity();
			blm.categoryFeatureCollocation();
			blm.categoryUtility();
			blm.predictability();
			blm.similarityGoguenNorm();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



