Final lab
This commit is contained in:
60
lab5/Codes/FSSB/FSSB.h
Normal file
60
lab5/Codes/FSSB/FSSB.h
Normal file
@@ -0,0 +1,60 @@
|
||||
/**
|
||||
* @brief Flow shop with blocking
|
||||
* @author doc. MSc. Donald Davendra Ph.D.
|
||||
* @date 3.10.2013
|
||||
*
|
||||
* This is a simple class to calculate the makespan of the flowshop with blocking schedule.
|
||||
*/
|
||||
|
||||
#ifndef __FSSB_H__
|
||||
#define __FSSB_H__
|
||||
|
||||
class cFSSB{
|
||||
|
||||
public:
|
||||
//! A constructor.
|
||||
/*!
|
||||
Constructs the FSSB class, and assigns the values.
|
||||
*/
|
||||
cFSSB();
|
||||
|
||||
//! A destructor.
|
||||
/*!
|
||||
Clears the memory.
|
||||
*/
|
||||
~cFSSB();
|
||||
|
||||
//! A normal member taking in the schedule and returning the cost.
|
||||
/*!
|
||||
\param A flowshop schedule
|
||||
\return The makespan value
|
||||
*/
|
||||
float Makespan(int *Schedule);
|
||||
|
||||
//! Returns the number of jobs.
|
||||
/*!
|
||||
\param no parameters
|
||||
\return The number of jobs
|
||||
*/
|
||||
int GetJobs();
|
||||
|
||||
//! Returns the number of machines.
|
||||
/*!
|
||||
\param no parameters
|
||||
\return The number of machines
|
||||
*/
|
||||
int GetMachines();
|
||||
void Initialize();
|
||||
|
||||
private:
|
||||
//! The processing time matrix.
|
||||
float** m_ProcessTime;
|
||||
//! The completion time matrix.
|
||||
float** m_CompletionTime;
|
||||
//! The number of jobs.
|
||||
int m_Jobs;
|
||||
//! The number of machines.
|
||||
int m_Machines;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user