fix: allow missing exciation...
parent
0e6cb6a5b6
commit
02f929aa53
|
@ -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)
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue