Commit e89046b1 authored by Davis King's avatar Davis King

Added tests for the MPC tool

parent 1a70c827
......@@ -67,7 +67,6 @@ namespace dlib
matrix<double,S,S> temp = diagm(Q);
for (unsigned long c = 0; c < horizon; ++c)
{
long i = horizon-c-1;
lambda += trans(B)*temp*B;
temp = trans(A)*temp*A + diagm(Q);
}
......
......@@ -84,6 +84,7 @@ set (tests
md5.cpp
member_function_pointer.cpp
metaprogramming.cpp
mpc.cpp
multithreaded_object.cpp
numerical_integration.cpp
object_detector.cpp
......
......@@ -99,6 +99,7 @@ SRC += max_sum_submatrix.cpp
SRC += md5.cpp
SRC += member_function_pointer.cpp
SRC += metaprogramming.cpp
SRC += mpc.cpp
SRC += multithreaded_object.cpp
SRC += numerical_integration.cpp
SRC += object_detector.cpp
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment