// // simu1.h Asset Allocation Header // struct termvals { double termstock; double termwealth;}; class aa { public: aa(double ttm=1.0,int nper=120,double r=.05,double mean=.15,double stddev=.2); int restart(double ttm,int nper,double r,double mean,double stddev); termvals fixprops(double inrisky,double initstock=0.0,double initcash=100.0); private: int npers; double tinc, r1per, mean1per, std1persqrt12, wealth, stockpos, cash, stockP, stockret; double stocktotret();};