EgtExecutor 2.2b1 :

- aggiunta funzione Exe e Lua AutoNestSetReportFile.
This commit is contained in:
Dario Sassi
2020-02-04 07:38:53 +00:00
parent dbda122216
commit 80d503e16f
3 changed files with 25 additions and 0 deletions
+9
View File
@@ -194,6 +194,15 @@ ExeAutoNestSetInterpartGap( double dGap)
return s_pAutoNester->SetInterpartGap( dGap) ;
}
//-----------------------------------------------------------------------------
bool
ExeAutoNestSetReportFile( const string& sReportFile)
{
if ( IsNull( s_pAutoNester))
return false ;
return s_pAutoNester->SetReportFile( sReportFile) ;
}
//-----------------------------------------------------------------------------
bool
ExeAutoNestCompute( bool bMinimizeOnXvsY, int nMaxTime)