| 
										  The 
										string size is mxn, where m is 
										the number of machines (operations) and 
										n is the number of jobs. Each string 
										item is a random integer number between 
										[1, n]. This number is 
										repeated as many times as operations are 
										required the job. 
										
										
										  
										
										
										For instance, the 
										string size for a 3 machines x 4 jobs 
										problem is 12 (=3 x4). The job1 is 
										represented by number 1 and it is 
										repeated 3 times because the job 1 has 3 
										operations ( 3 machines). The process is 
										the same for the other jobs. Thus, one 
										possible result is: 
										
										
										[ 1 2 4 4 3 2 3 4 1 1 ]. 
										
										
										    |