Current Path : /usr/local/include/pari/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/local/include/pari/paricast.h |
/* $Id: paricast.h 7075 2005-07-09 13:43:11Z kb $ Copyright (C) 2000 The PARI group. This file is part of the PARI/GP package. PARI/GP is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation. It is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY WHATSOEVER. Check the License for details. You should have received a copy of it, along with the package; see the file 'COPYING'. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define mael2(m,x1,x2) (((GEN*) (m))[x1][x2]) #define mael3(m,x1,x2,x3) (((GEN**) (m))[x1][x2][x3]) #define mael4(m,x1,x2,x3,x4) (((GEN***) (m))[x1][x2][x3][x4]) #define mael5(m,x1,x2,x3,x4,x5) (((GEN****)(m))[x1][x2][x3][x4][x5]) #define mael mael2 #define gmael1(m,x1) (((GEN*) (m))[x1]) #define gmael2(m,x1,x2) (((GEN**) (m))[x1][x2]) #define gmael3(m,x1,x2,x3) (((GEN***) (m))[x1][x2][x3]) #define gmael4(m,x1,x2,x3,x4) (((GEN****) (m))[x1][x2][x3][x4]) #define gmael5(m,x1,x2,x3,x4,x5) (((GEN*****)(m))[x1][x2][x3][x4][x5]) #define gmael gmael2 #define gel gmael1 #define gcoeff(a,i,j) (((GEN**)(a))[j][i]) #define coeff(a,i,j) (((GEN*)(a))[j][i])