/usr/include/givaro/givvectdensespe.inl 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 | // ==========================================================================
// $Source
// Copyright(c)'1994-2009 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: T. Gautier
// $Id
// ==========================================================================
namespace Givaro {
#pragma message "#warning this file will probably not compile"
template<>
inline void VectorDom<Modular<int16_t>,Dense>::dot
( Type_t& res, const Rep& op1, const Rep& op2) const
{
size_t sz = dim(op1);
const Modular<int16_t>& domain = subdomain();
domain.dotprod( res, sz, op1.baseptr(), op2.baseptr() );
}
} // Givaro
|