/**********************Online FCM***************************/
mstreaming.cpp (the online streaming algorithm to cluster chunk only)

Note: Modify setup.h for parameter setting
g++ mstreaming.cpp memAllocation.cpp -O3 -o online
Usage: spf fname.bin chunksize count.dat (file containing the no of data points in the full data set;this
information is just used to compute quality)

merger.cpp (used to cluster weighted centroids)

g++ merger.cpp memAllocation.cpp -O3 -o merger
Usage: merger WV.dat (will be created by mstreaming.cpp) clusterCount.dat(will be created by mstreaming.cpp) 
fulldata.bin (full data set;used for computing quality) count1.dat(size of full data set; used for computing quality)

