- in BeamExec e NestProcess correzioni varie per Nesting obliquo
- in NestProcess aggiunto dump in/out per debug
This commit is contained in:
+4
-12
@@ -940,22 +940,14 @@ end
|
||||
function BeamLib.ConvertBitIndexToRotationIndex( sBitIndexCombination)
|
||||
local nRotationIndex
|
||||
|
||||
if sBitIndexCombination == '1000' then
|
||||
if EgtStartsWith( sBitIndexCombination, '1000') then
|
||||
return 1
|
||||
elseif sBitIndexCombination == '0100' then
|
||||
elseif EgtStartsWith( sBitIndexCombination, '0100') then
|
||||
return 2
|
||||
elseif sBitIndexCombination == '0010' then
|
||||
elseif EgtStartsWith( sBitIndexCombination, '0010') then
|
||||
return 3
|
||||
elseif sBitIndexCombination == '0001' then
|
||||
elseif EgtStartsWith( sBitIndexCombination, '0001') then
|
||||
return 4
|
||||
elseif sBitIndexCombination == '1000_INV' then
|
||||
return 5
|
||||
elseif sBitIndexCombination == '0100_INV' then
|
||||
return 6
|
||||
elseif sBitIndexCombination == '0010_INV' then
|
||||
return 7
|
||||
elseif sBitIndexCombination == '0001_INV' then
|
||||
return 8
|
||||
end
|
||||
|
||||
return nRotationIndex
|
||||
|
||||
Reference in New Issue
Block a user