
#include "asa_user.h"


int main(int argc,char **argv)

{

double rocket_cost_function (double *x,
               double *parameter_lower_bound,
               double *parameter_upper_bound,
               double *cost_tangents,
               double *cost_curvature,
               ALLOC_INT * parameter_dimension,
               int *parameter_int_real,
               int *cost_flag,
               int *exit_code,
               USER_DEFINES * USER_OPTIONS);
int cost_flag;
double x[11];
x[0] = 1.00 ;//tank height
x[1] = .02;//Tank Pseudovolume
x[2] = .19; //  Mass Flow allowed
x[3] = 3451;// Flat Velocity
x[4] = 50;  //expansion ratio
x[5] = 0;// a
x[6] = 0;//b
x[7] = 0;//c
x[8] = 0;//d
x[9] = 9; // max g
x[10] = 92.;// tanlk press

   rocket_cost_function(x,NULL,NULL,NULL,NULL,NULL,NULL,&cost_flag,NULL,NULL);
  return 0;
}
