⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 sqp程序包。用sqp算法实现非线性约束的优化求解
💻
字号:
# use the compiler call appropriate for your platformCC = gcc# note that ANSI-C is required to compile donlp2.c you may have# to add appropriate options in CFLAGS for your native cc or you may use# gcc# you may add or alter compiler options  below -O3 means full optimization#due to stacksize limitations for large NX and NRESM you might be forced# to change o8para.hCFLAGS =  -O3BASIS = *.hDRIVER = userfu.o user_eval.o OPTIMIZER = donlp2.o .c.o:	$(CC) $(CFLAGS) -c $<exe :	$(DRIVER)   $(OPTIMIZER)  	$(CC) $(CFLAGS) $(DRIVER)  $(OPTIMIZER)  -o exe -lc -lmclean :  rm -f *.oclean_total : clean	rm -f exe  *.pro *.mes core donlp2.o : donlp2.c $(BASIS)userfu.o : userfu.c  $(BASIS)user_eval.o : user_eval.c $(BASIS)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -