// Copyright (c) FIRST and other WPILib contributors. // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. #include "wpi/util/expected" #include "wpi/math/linalg/DARE.hpp" template wpi::expected, frc::DAREError> frc::DARE<4, 1>(const Eigen::Matrix& A, const Eigen::Matrix& B, const Eigen::Matrix& Q, const Eigen::Matrix& R, bool checkPreconditions); template wpi::expected, frc::DAREError> frc::DARE<4, 1>(const Eigen::Matrix& A, const Eigen::Matrix& B, const Eigen::Matrix& Q, const Eigen::Matrix& R, const Eigen::Matrix& N, bool checkPreconditions);