R
Rick
Guest
I need to expand on this code and drawing blank on the right
syntax.
multiThread = "+mt=numThreads" <--numThreads needs to be evaluated
so the result will look like below
original working code but multiThread was hardcode
if( mtOption=="Manual" then
if(numThreads > 3 && numThreads < 17 then
multiThread = "+mt=16"
)
if(numThreads > 1 && numThreads < 5 then
multiThread = "+mt=4"
)
if( numThreads== 1 then
multiThread = "-mt"
)
);if MT=Manual
syntax.
multiThread = "+mt=numThreads" <--numThreads needs to be evaluated
so the result will look like below
original working code but multiThread was hardcode
if( mtOption=="Manual" then
if(numThreads > 3 && numThreads < 17 then
multiThread = "+mt=16"
)
if(numThreads > 1 && numThreads < 5 then
multiThread = "+mt=4"
)
if( numThreads== 1 then
multiThread = "-mt"
)
);if MT=Manual