代码搜索:Simplex
找到约 356 项符合「Simplex」的源代码
代码结果 356
www.eeworm.com/read/494775/6375005
cpp simplex.cpp
#include
#include
#define CMAX 10 //max. number of variables in economic function
#define VMAX 10 //max. number of constraints
int NC, NV, NOPTIMAL,P1,P2,XERR;
do
www.eeworm.com/read/494775/6375006
obj simplex.obj
www.eeworm.com/read/494775/6375007
exe simplex.exe
www.eeworm.com/read/482841/6614399
obj simplex.obj
www.eeworm.com/read/482841/6614401
cpp simplex.cpp
#include
#include
#include
#include
#include "Simplex.h"
#include "Pantalla.h"
//Instancia de clase SimplexClass:
SimplexClass Simplex;
//cabecer
www.eeworm.com/read/482841/6614402
h simplex.h
#include
#define MAX_INDEX 10 //Maximo de variables y restricciones
/****************************************************************************
Clase: SimplexClass.
D
www.eeworm.com/read/347816/11634772
cpp simplex.cpp
#include
#include
using namespace std;
#define M 100000
//全局变量
float **kernel;//核心矩阵表
int m=0,n=0,t=0;//m:结构向量的个数
//n:约束不等式个数
//t:目标函数类型:-1代表
www.eeworm.com/read/256389/12002255
java simplex.java
/*
* Copyright (c) 2005 by L. Paul Chew.
*
* Permission is hereby granted, without written agreement and without
* license or royalty fees, to use, copy, modify, and distribute this
* softw
www.eeworm.com/read/153347/12040715
cpp simplex.cpp
//单纯形法类cpp文件
//Edit by Wang Shimin
//2004.8.25~2004.9.10
//本文件为最新文件,修改于2006.3.12
// Simplex.cpp: implementation of the Simplex class.
//
///////////////////////////////////////////////////////
www.eeworm.com/read/153347/12040718
h simplex.h
//单纯形法类头文件
//Edit by Wang Shimin
//2004.8.25~2004.9.10
//本文件为最新文件,修改于2006.3.12
// Simplex.h: interface for the Simplex class.
//
/////////////////////////////////////////////////////////////