/*
Copyright (C) 2013 Tom Bachmann
This file is part of FLINT.
FLINT is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version. See .
*/
#ifndef CXX_FMPZ_VECXX_H
#define CXX_FMPZ_VECXX_H
#include "fmpzxx.h"
#include "fmpz_vec.h"
#include "flintxx/vector.h"
namespace flint {
namespace detail {
struct fmpz_vector_data
{
slong size;
fmpz* array;
fmpz_vector_data(slong n)
: size(n), array(_fmpz_vec_init(n)) {}
~fmpz_vector_data() {_fmpz_vec_clear(array, size);}
fmpz_vector_data(const fmpz_vector_data& o)
: size(o.size), array(_fmpz_vec_init(o.size))
{
_fmpz_vec_set(array, o.array, size);
}
fmpzxx_ref at(slong i) {return fmpzxx_ref::make(array + i);}
fmpzxx_srcref at(slong i) const {return fmpzxx_srcref::make(array + i);}
};
} // detail
typedef vector_expression<
detail::wrapped_vector_traits,
operations::immediate,
detail::fmpz_vector_data> fmpz_vecxx;
// TODO references
template<>
struct enable_vector_rules : mp::false_ { };
namespace rules {
// TODO hack to make code look like references are implemented
template struct FMPZ_VECXX_COND_S : mp::equal_types { };
#define FMPZ_VECXX_COND_T FMPZ_VECXX_COND_S
template
struct to_string >::type>
{
static std::string get(const fmpz_vecxx& e, int base)
{
// TODO use _fmpz_vec_print somehow?
std::ostringstream o;
o << e.size();
if(e.size() == 0)
{
return o.str();
}
o << " ";
for(slong i = 0;i < e.size();++i)
{
o << e[i].to_string(base);
if(i != e.size() - 1)
o << " ";
}
return o.str();
}
};
// TODO references
FLINT_DEFINE_GET(equals, bool, fmpz_vecxx,
e1.size() == e2.size()
&& _fmpz_vec_equal(e1._data().array, e2._data().array, e1.size()))
FLINT_DEFINE_BINARY_EXPR_COND2(plus, fmpz_vecxx,
FMPZ_VECXX_COND_S, FMPZ_VECXX_COND_S,
_fmpz_vec_add(to._data().array, e1._data().array, e2._data().array,
e1.size()))
FLINT_DEFINE_DOIT_COND2(assignment, FMPZ_VECXX_COND_T, FMPZ_VECXX_COND_S,
_fmpz_vec_set(to._array(), from._array(), to.size()))
// TODO more
} // rules
} // flint
#endif