/* Copyright 2015 Ian Jauslin Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include "meantools_eval.h" #include #include #include "parse_file.h" #include "cli_parser.h" #include "grouped_polynomial.h" #include "array.h" #include "rcc.h" #define CP_FLAG_RCCS 1 // read command line arguments int tool_eval_read_args(int argc, const char* argv[], Str_Array* str_args, Meantools_Options* opts){ // file to read the polynomial from in flow mode const char* file=""; // whether a file was specified on the command-line int exists_file=0; // flag int flag=0; int i; char* ptr; // defaults // mark rccstring so that it can be recognized whether it has been set or not (*opts).eval_rccstring.length=-1; // loop over arguments for(i=2;i=0){ char_array_cpy(str_args.strs[arg_index],&(opts.eval_rccstring)); } } } // initialize the rccs prepare_init(flow_equation.indices,flow_equation.length,&rccs); // read rccs from string if(opts.eval_rccstring.length!=-1){ parse_init_cd(opts.eval_rccstring, &rccs); free_Char_Array(opts.eval_rccstring); } // evaluate evaleq(&rccs, flow_equation); // print RCC_print(rccs); // free memory free_Grouped_Polynomial(flow_equation); free_RCC(rccs); return(0); }