2020-12-26 14:12:05 -08:00
|
|
|
// 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.
|
2020-08-14 23:40:33 -07:00
|
|
|
|
|
|
|
|
#include "frc/controller/LinearQuadraticRegulator.h"
|
|
|
|
|
|
|
|
|
|
namespace frc {
|
|
|
|
|
|
2022-04-29 23:29:17 -07:00
|
|
|
template class EXPORT_TEMPLATE_DEFINE(WPILIB_DLLEXPORT)
|
|
|
|
|
LinearQuadraticRegulator<1, 1>;
|
|
|
|
|
template class EXPORT_TEMPLATE_DEFINE(WPILIB_DLLEXPORT)
|
|
|
|
|
LinearQuadraticRegulator<2, 1>;
|
|
|
|
|
template class EXPORT_TEMPLATE_DEFINE(WPILIB_DLLEXPORT)
|
|
|
|
|
LinearQuadraticRegulator<2, 2>;
|
2021-06-01 12:26:11 -07:00
|
|
|
|
2020-08-14 23:40:33 -07:00
|
|
|
} // namespace frc
|