#include <polyfem/optimization/var2sims/ActiveSelectionUtils.hpp>
#include <polyfem/legacy/State.hpp>
#include <Eigen/Core>
#include <vector>
#include <string>
#include <memory>
#include <cassert>
#include <unordered_set>
#include <spdlog/fmt/fmt.h>
#include <polyfem/assembler/GenericProblem.hpp>
Go to the source code of this file.
|
| bool | polyfem::solver::is_active_geom_nodes_valid (const Eigen::VectorXi &active_geom_nodes, const std::vector< std::shared_ptr< legacy::State > > &states, std::string &reason) |
| | Validate active geometry nodes selection given states.
|
| |
| bool | polyfem::solver::is_active_dims_valid (const Eigen::VectorXi &active_dimensions, const std::vector< std::shared_ptr< legacy::State > > &states, std::string &reason) |
| | Validate active dimensions selection given states.
|
| |
| bool | polyfem::solver::is_active_dofs_valid (const Eigen::VectorXi &active_dofs, const std::vector< std::shared_ptr< legacy::State > > &states, std::string &reason) |
| | Validate active solution space dofs selection given states.
|
| |
| bool | polyfem::solver::is_active_time_slices_valid (const Eigen::VectorXi &active_time_slices, const std::vector< std::shared_ptr< legacy::State > > &states, std::string &reason) |
| | Validate active time slices selection given states.
|
| |
| bool | polyfem::solver::is_active_dirichlet_boundary_ids_valid (const Eigen::VectorXi &active_boundary_ids, const std::vector< std::shared_ptr< legacy::State > > &states, std::string &reason) |
| | Validate active Dirichlet boundary ids selection given states.
|
| |
| bool | polyfem::solver::is_active_dirichlet_node_valid (const Eigen::VectorXi &active_dirichlet_nodes, const std::vector< std::shared_ptr< legacy::State > > &states, std::string &reason) |
| | Validate active Dirichlet node ids selection given states.
|
| |
| bool | polyfem::solver::is_active_pressure_boundary_ids_valid (const Eigen::VectorXi &active_boundary_ids, const std::vector< std::shared_ptr< legacy::State > > &states, std::string &reason) |
| | Validate active pressure boundary ids selection given states.
|
| |