Home | History | Annotate | Download | only in test

Lines Matching refs:ref

138     ArrayType x(7), q(7), res(7), ref(7);
141 ref << 1.61237534869, 0.234848505667, 1.03086757337e-5, 0.367879440865, 0.054102025820864097, plusinf, nan;
142 CALL_SUBTEST( verify_component_wise(ref, ref); );
143 CALL_SUBTEST( res = x.zeta(q); verify_component_wise(res, ref); );
144 CALL_SUBTEST( res = zeta(x,q); verify_component_wise(res, ref); );
149 ArrayType x(7), res(7), ref(7);
151 ref << -0.5772156649015329, 0.03648997397857645, 1.2561176684318, 2.398239129535781, 9.210340372392849, plusinf, plusinf;
152 CALL_SUBTEST( verify_component_wise(ref, ref); );
154 CALL_SUBTEST( res = x.digamma(); verify_component_wise(res, ref); );
155 CALL_SUBTEST( res = digamma(x); verify_component_wise(res, ref); );
161 ArrayType n(11), x(11), res(11), ref(11);
164 ref << 0.644934066848, 0.394934066848, 0.0399946696496, nan, 293.334565435, 0.445487887616, -2.47810300902e-07, -8.29668781082e-09, -0.434562276666, 0.567742190178, -0.0108615497927;
165 CALL_SUBTEST( verify_component_wise(ref, ref); );
169 // CALL_SUBTEST( res = x.polygamma(n); verify_component_wise(res, ref); );
170 CALL_SUBTEST( res = polygamma(n,x); verify_component_wise(res, ref); );
173 // CALL_SUBTEST( res = x.polygamma(n); verify_component_wise(res.head(8), ref.head(8)); );
174 CALL_SUBTEST( res = polygamma(n,x); verify_component_wise(res.head(8), ref.head(8)); );