Revision f4b57baedd8f5c3cf9fa0f056016119963903763 authored by Cyril Bouvier on 18 February 2019, 15:58:44 UTC, committed by Cyril Bouvier on 18 February 2019, 15:58:44 UTC
1 parent 0b4e1fc
Raw File
test-det.C
/*
 * Copyright (C) FFLAS-FFPACK
 * Written by Clément Pernet
 * This file is Free Software and part of FFLAS-FFPACK.
 *
 * ========LICENCE========
 * This file is part of the library FFLAS-FFPACK.
 *
 * FFLAS-FFPACK is free software: you can redistribute it and/or modify
 * it under the terms of the  GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * ========LICENCE========
 *.
 */


//--------------------------------------------------------------------------
//                        Test for det
//
//--------------------------------------------------------------------------
// Clement Pernet
//-------------------------------------------------------------------------

#include "fflas-ffpack/fflas-ffpack-config.h"
#include <iomanip>
#include <iostream>
#include <givaro/modular-balanced.h>

#include "fflas-ffpack/utils/timer.h"
#include "fflas-ffpack/ffpack/ffpack.h"
#include "fflas-ffpack/utils/args-parser.h"

#include "fflas-ffpack/utils/test-utils.h"

using namespace FFLAS;

template<class Field, class RandIter>
bool test_det(Field &F, size_t n, int iter, RandIter& G)
{
    typedef typename Field::Element Element;
    //! @todo test with stride
    Element * A = fflas_new (F, n, n);

    bool pass = true;
    Element d,dt;
    F.init(d); F.init(dt);
    for(int i = 0;i<iter;++i){
        G.random(dt);
        FFPACK::RandomMatrixWithDet(F, n, dt, A, n, G);
        F.assign(d, FFPACK::Det (F, n, n, A, n));
        if (!F.areEqual(dt,d)) {
            pass = false;
            break;
        }
        ++dt;
    }
    fflas_delete( A);
    return pass;
}

int main(int argc, char** argv)
{

    int iters =10 ;
    Givaro::Integer p = 65521 ;
    size_t n = 200 ;
    uint64_t seed = getSeed();
    Argument as[] = {
        { 'p', "-p P", "Set the field characteristic.",         TYPE_INTEGER , &p },
        { 'n', "-n N", "Set the dimension of the matrix.",      TYPE_INT , &n },
        { 'i', "-i R", "Set number of repetitions.",            TYPE_INT , &iters },
        { 's', "-s seed", "Set seed for the random generator", TYPE_UINT64, &seed },
        END_OF_ARGUMENTS
    };

    parseArguments(argc,argv,as);

    bool pass = true ;
    typedef Givaro::ModularBalanced<double> Field;
    Field F(p);
    Field::RandIter G(F,0,seed);
    pass = pass && test_det(F,n,iters,G);

    return ((pass==true)?0:1);
}
/* -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
// vim:sts=4:sw=4:ts=4:et:sr:cino=>s,f0,{0,g0,(0,\:0,t0,+0,=s
back to top