File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 11## Next Implementations
22
3-
3+ - Cocoso has optional argument of lambda with default value 0.5
4+ - Codas has optional argument of tau with default value 0.02
5+ - Waspas has optional argument of lambda with default value 0.5
Original file line number Diff line number Diff line change @@ -10,16 +10,13 @@ case class WaspasResult(
1010 ranks : Vec
1111) extends MCDMResult
1212
13- val defaultWaspasOptions : Map [String , Any ] = Map (
14- " lambda" -> 0.5
15- )
1613
1714def waspas (
1815 decisionMat : Mat ,
1916 weights : Vec ,
2017 directions : Array [Direction ],
2118 normalization : NormalizationFunction = DivideByColumnMaxMinNormalization ,
22- options : Map [String , Any ] = defaultWaspasOptions
19+ options : Map [String , Any ] = Map ( " lambda " -> 0.5 )
2320): WaspasResult =
2421
2522 val (row, col) = Matrix .size(decisionMat)
You can’t perform that action at this time.
0 commit comments