ADMB Documentation  11.5.3197
 All Classes Files Functions Variables Typedefs Friends Defines
model40.cpp
Go to the documentation of this file.
00001 /*
00002  * $Id$
00003  *
00004  * Author: David Fournier
00005  * Copyright (c) 2008-2012 Regents of the University of California
00006  */
00007 
00008 #include <admodel.h>
00009 
00010   void data_5array::allocate(int hhhsl,int hhhsu,
00011     int hhsl,int hhsu,
00012     int hsl,int hsu,
00013     int rmin,int rmax,int cmin,int cmax,const char * s)
00014   {
00015     named_d5_array::allocate(hhhsl,hhhsu,hhsl,hhsu,hsl,hsu,rmin,
00016       rmax,cmin,cmax,s);
00017     *(ad_comm::global_datafile) >> d5_array(*this);
00018   }
00019 
00020 void data_5array::allocate(ad_integer hhhsl, ad_integer hhhsu,
00021   const index_type& hhsl, const index_type& hhsu,
00022   const index_type& hsl, const index_type& hsu,
00023   const index_type& rmin, const index_type& rmax,
00024   const index_type& cmin, const index_type& cmax, const char* s)
00025   {
00026     named_d5_array::allocate(hhhsl,hhhsu,hhsl,hhsu,hsl,hsu,rmin,rmax,
00027       cmin,cmax,s);
00028     *(ad_comm::global_datafile) >> d5_array(*this);
00029   }