Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 1a0a1833 authored by hhakim's avatar hhakim
Browse files

Fix minor error in matfaust optimize_time unit test.

parent 45605295
No related branches found
No related tags found
No related merge requests found
......@@ -391,7 +391,7 @@ classdef FaustTest < matlab.unittest.TestCase
this.verifyEqual(F*M, J*M, 'RelTol', 1e-5)
this.verifyEqual(F*S, J*S, 'RelTol', 1e-5)
% using the F*S benchmark
K = optimize_time(F, 'mat', M)
K = optimize_time(F, 'mat', S)
this.verifyEqual(full(F), full(K), 'RelTol', 1e-5)
this.verifyEqual(F*M, K*M, 'RelTol', 1e-5)
this.verifyEqual(F*S, K*S, 'RelTol', 1e-5)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment