fix(poly): changed lambda from fespace to scalar

previously I had a lagrangian multipliers at every element; however, we are enforcing a global constraint so there need only be one lagrangian multiplier
This commit is contained in:
2025-02-20 15:36:46 -05:00
parent a0811dc0c4
commit ff299f8ce7
2 changed files with 5 additions and 23 deletions

View File

@@ -20,7 +20,6 @@ private:
std::unique_ptr<mfem::H1_FECollection> feCollection;
std::unique_ptr<mfem::FiniteElementSpace> feSpace;
std::unique_ptr<mfem::FiniteElementSpace> lambdaFeSpace;
std::unique_ptr<polyMFEMUtils::CompositeNonlinearIntegrator> compositeIntegrator;