/*********************************************************************12(c) Copyright 2006-2010 Salman Baig and Chris Hall34This file is part of ELLFF56ELLFF is free software: you can redistribute it and/or modify7it under the terms of the GNU General Public License as published by8the Free Software Foundation, either version 3 of the License, or9(at your option) any later version.1011ELLFF is distributed in the hope that it will be useful,12but WITHOUT ANY WARRANTY; without even the implied warranty of13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14GNU General Public License for more details.1516You should have received a copy of the GNU General Public License17along with this program. If not, see <http://www.gnu.org/licenses/>.1819*********************************************************************/2021#ifndef JACOBI_H22#define JACOBI_H2324#include <NTL/lzz_p.h>25#include <NTL/lzz_pE.h>26#include <NTL/ZZX.h>2728NTL_CLIENT2930void jacobi_sum(ZZ ***sum, long d);3132#endif // JACOBI_H333435