fix: allow missing exciation...

pull/1/head
Thorsten Liebig 2011-02-07 14:40:44 +01:00
parent 0e6cb6a5b6
commit 02f929aa53
2 changed files with 3 additions and 4 deletions

View File

@ -784,8 +784,7 @@ int Operator::CalcECOperator( DebugFlags debugFlags )
ApplyMagneticBC(PMC);
InitExcitation();
if (CalcFieldExcitation()==false) return -1;
CalcFieldExcitation();
//all information available for extension... create now...
for (size_t n=0; n<m_Op_exts.size(); ++n)

View File

@ -56,11 +56,11 @@ Engine* Operator_SSE_Compressed::CreateEngine() const
int Operator_SSE_Compressed::CalcECOperator( DebugFlags debugFlags )
{
Operator_sse::CalcECOperator( debugFlags );
int ErrCode = Operator_sse::CalcECOperator( debugFlags );
m_Use_Compression = false;
m_Use_Compression = CompressOperator();
return 0;
return ErrCode;
}
void Operator_SSE_Compressed::Init()