EgtExecutor :

- modifica prototipi in Machining Optimization.
This commit is contained in:
Riccardo Elitropi
2025-12-18 09:06:41 +01:00
parent d256c5f5ea
commit fb29be348a
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -180,12 +180,12 @@ ExeOptMachSetOpenBoundForGroups( int nGroup, bool bStartVsEnd, int nFlag, double
//----------------------------------------------------------------------------
bool
ExeOptMachGetResult( INTVECTOR& vIds)
ExeOptMachCalculate( INTVECTOR& vIds)
{
vIds.clear() ;
// Se oggetto non instanziato, errore
if ( IsNull( s_pMO))
return false ;
// Recupero i risultati
return ( s_pMO->GetResult( vIds)) ;
return ( s_pMO->Calculate( vIds)) ;
}