- Completato strategia STR0014
- Migliorata gestione pezzo invertito - Corretto problema scelta combinazione migliore - In STR0001 corretto nome variabile - In STR0011 (foro) cambiato messaggio warning in caso di lavorazione non completa - In BLADETOWASTE se taglio troncante, si setta da fare dopo taglio coda
This commit is contained in:
+2
-2
@@ -163,7 +163,7 @@ function Logs.WriteCombinationLog( CombinationsList, BestCombination)
|
||||
EgtOutLog( '------------------------------------------------------------------------------')
|
||||
|
||||
for CombiLog = 1, #CombinationsList do
|
||||
local sPartPosition = EgtIf( CombinationsList[CombiLog].bPartIsInverted, 'INV', 'ORI')
|
||||
local sPartPosition = EgtIf( CombinationsList[CombiLog].bPartInCombiIsInverted, 'INV', 'ORI')
|
||||
local sLogLine = ' ' .. CombinationsList[CombiLog].sBitIndexCombination .. ' (' .. CombinationsList[CombiLog].nUnloadPos .. ') ' .. sPartPosition .. ' |'
|
||||
-- rating
|
||||
local sOtherField = tostring( CombinationsList[CombiLog].dTotalRating) .. ' |'
|
||||
@@ -198,7 +198,7 @@ function Logs.WriteCombinationLog( CombinationsList, BestCombination)
|
||||
|
||||
EgtOutLog( sLogLine)
|
||||
end
|
||||
local sPartPosition = EgtIf( BestCombination.bPartIsInverted, 'INV', 'ORI')
|
||||
local sPartPosition = EgtIf( BestCombination.bPartInCombiIsInverted, 'INV', 'ORI')
|
||||
EgtOutLog( '------------------------------------------------------------------------------')
|
||||
EgtOutLog( ' BEST ROTATION : ' .. BestCombination.sBitIndexCombination .. ' (' .. BestCombination.nUnloadPos .. ') ' .. sPartPosition)
|
||||
EgtOutLog( '---------------------------')
|
||||
|
||||
Reference in New Issue
Block a user