MAOS-FSP: Project Portal
Category : Software
MAOS-FSP [1] is a multiagent optimization system (MAOS) for solving the Flowshop Scheduling Problem (FSP). MAOS-FSP shares the MAOS kernel with other MAOS applications (e.g. MAOS-GCP and MAOS-TSP), and contains some modules that are specifically for tacking FSP.
Related Information: Please find other related code and software in our Source Code Library.
Basic Description | What’s New | Directories & Files | Command Line & Parameters | Output Information | References |
---|
License information: MAOS-FSP is free software; you can redistribute it and/or modify it under the Creative Commons Non-Commercial License 3.0.
System Requirements: MAOS-FSP is a platform-independent software developed by JAVA version 1.5 or above.
What’s New
|
---|
Version V1.0.001 [Download | Github]:
- Solver “STD_NLDUX”: It implements the original algorithm [1].
- Setting parameters: FSP:Problem, N, T, Tcon, Solver.
Directories & Files
|
---|
binary // the binary code of MAOS-FSP source // the source code of MAOS-FSP myprojects // user directory |-----> examples.bat // commandline examples |-----> results // the directory for storing runtime results |-----> setting // the setting directory |-----> kernel // the setting directory for MAOS Kernel |-----> FSP // the setting directory for FSP solvers |-----> solver // the directory containing solver script files (the name of each file is Solver_Name) |-----> tasks // task directory |-----> FSP |-----> instance // FSP instances (Problem_Name with the default suffix .txt) |-----> solution // the directory for storing solutions of FSP instances // For a normal solution, the file name is Problem_Name.(objective value).sln // If objective value is removed from the file name, the solution is considered as optimal.
Command Line & Parameters
|
---|
MAOS-FSP is executed on the command line (Enter the directory “myprojects”, and execute maosKernel.MAOSExecuter). Here is a typical example (See the file “myprojects/Examples.bat” for more examples), in which a user should specify JAVA options, general parameters, problem instance, and solver instance:
$ cd myprojects $ java -cp ../binary/MAOS_BIN.jar maosKernel.MAOSExecuter FSP:Problem=jeu_100_025_01 N=500 T=500 DUP_TIMES=10 solver=STD_NLDUX //java: the JAVA executor, JAVA Runtime Environment Version 1.5 or above is preferred //maosKernel.MAOSExecuter: the main execution entrance of the MAOS program
JAVA Options (See “java -help” for more information):
There is one recommended optional parameter for java: -server: select the "server" VM, which is normally faster than the "client" VM The "-cp" option is used for loading the binary file "../release/MAOS_BIN.jar".
General Parameters:
NAME VALUE_type Range Default_Value Description FSP:Problem String * <Problem_Name> The problem instance to be solved -------------------------------------------------------------------------------------------------- N integer >1 100 The number of agents T integer >0 500 Terminate condition: The maximum learning cycles Tcon integer >0 -1 Terminate condition: The number of cycles as the best state is unvaried //If Tcon==-1, then Tcon=T DUP_TIMES integer >0 2 Number of trials -------------------------------------------------------------------------------------------------- Solver String * <Solver_Name> The name of the script of the actual solver //The explanation of Problem_Name and Solver_Name can be found in Directories & Files.
Output Information
|
---|
For the output, we provide screen output, output a file for the running result, and stored the best solution ever found.
Screen Output:
[Initialization information]: provide the parsing information during the initialization. [Runtime information]: The program outputs runtime information, i.e., the current best evaluation values, execution time, at every "Tout" cycles. [Summary information]: At the end, it outputs the input variables, response values, and evaluation values <Vcon, Vopt> of the best solution.
Result File:
The result file will be stored at the directory "myprojects/results".
Solution File:
The best solution (better than any previous solutions) will be stored at the directory "myprojects/tasks/FSP/solution" (of the FSPLIB format).
References
|
---|
![[pdf]](http://www.wiomax.com/team/xie/wp-content/plugins/papercite/img/pdf.png)
![[Code]](http://www.wiomax.com/team/xie/wp-content/plugins/papercite/img/code.png)
![[doi]](http://www.wiomax.com/team/xie/wp-content/plugins/papercite/img/doi.png)
![[Bibtex]](http://www.wiomax.com/team/xie/wp-content/plugins/papercite/img/bib.png)
@Article{Xie2012a,
Title = {Round-table group optimization for sequencing problems},
Author = {Xiao-Feng Xie},
Journal = {International Journal of Applied Metaheuristic Computing},
Year = {2012},
Number = {4},
Pages = {1-24},
PDF={http://www.wiomax.com/team/xie/paper/IJAMC12.pdf},
DOI={10.4018/jamc.2012100101},
Code={http://www.wiomax.com/maos-qap},
Volume = {3}
}