/usr/include/givaro/modular-balanced.h is in libgivaro-dev 4.0.2-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | // ==========================================================================
// Copyright(c)'1994-2015 by The Givaro group
// This file is part of Givaro.
// Givaro is governed by the CeCILL-B license under French law
// and abiding by the rules of distribution of free software.
// see the COPYRIGHT file for more details.
// Authors: Pascal Giorgi <pascal.giorgi@ens-lyon.fr>
// Clement Pernet <Clement.Pernet@imag.fr>
// Brice Boyer (briceboyer) <boyer.brice@gmail.com>
// Alexis Breust (adpated from FFLAS-FFPACK)
// ==========================================================================
/*! @file field/modular-balanced.h
* @ingroup field
* @brief Balanced representation of <code>Z/mZ</code> over several types .
*/
#ifndef __GIVARO_modular_balanced_H
#define __GIVARO_modular_balanced_H
#include <givaro/givconfig.h>
#include "givaro/modular-balanced-double.h"
#include "givaro/modular-balanced-float.h"
#include "givaro/modular-balanced-int32.h"
#include "givaro/modular-balanced-int64.h"
#endif // __GIVARO_modular_balanced_double_H
|