#ifndef PROLIFICSCHEDULER_HPP
#define PROLIFICSCHEDULER_HPP

#include <iostream>
#include <unistd.h>

using namespace std;

class ProlificScheduler{
	private:
		int partition(double* s, int low, int high);
		void quick_sort(double* s, int low, int high);

	public:
		//default constractor
		ProlificScheduler();
		//default destrauctor
		~ProlificScheduler();

		//function
		void execute(int k, int rows, int  n, double* data);

};



#endif
