Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
100 views

How to determine simplex time complexity (ie Max flow)

Simplex algorithm is said to have exponential worst case time complexity. Yet it is still often used in practice. How can you determine the average time complexity for a certain problem (being solved ...
4
votes
2answers
337 views

Generating Tiling Noise Maps “on the fly”

Im interested in Generating 3D height maps for a 2D Game I am working on. I am using this to create Land masses like in Minecraft or Dwarf Fortress and have done this before but only in fixed sizes: ...
2
votes
1answer
84 views

How to set decision variables types like binary, int, double in Apache Commons Math SimplexSolver?

How to set decision variables types like binary, int, double in Apache Commons Math SimplexSolver? The output of the program below is this: 332.6666666666667 1.0 8331.666666666668 I want decision ...
1
vote
1answer
54 views

Linear programming - dual simplex variable meanings?

I have just learned the simplex method for solving linear programs, and I'm trying to understand what it's dual problem represents. I understand the mechanics of solving a dual problem - I do not ...
1
vote
0answers
45 views

Table Simplex method: 1) why do we need to have identity matrix? 2) Nonexistance of optimal solution 3) Stop iteration condition

Recently I have read this superb Simplex method tutorial: http://www.tutor.ms.unimelb.edu.au/simplex_intro/index.html . While explaning things in very clear fashion, some obscurity still left. From ...
0
votes
0answers
86 views

Simplex Noise Seeding

So I'm using the noise library from pypi to create simplex noise for my tiled map, I am now looking for ways to seed it. I've tried with a 3D simplex noise and used the z axis as seed, it didn't work ...
0
votes
0answers
31 views

How do I set the local port of a WCF simplex channel?

I'd like to connect to a server through a certain local port (presumably, 80). Is this possible in a simplex scenario?
0
votes
0answers
203 views

Solve an assignment problem with simplex in c# with help from ms solver foundation services

Hy I'm doing my diploma thesis on an assignment problem in logistics. There is a logistics software in c# and my part is to solve that assignment problem with a (primal or primal-dual-simplex). I ...
0
votes
1answer
119 views

Has anyone seen a simplex library for javascript/nodejs

I've been writing a lot of my scripts in NodeJs, but I need to use something like the GLPK libraries in order to handle some of the optimizations in my scripts. Has anyone heard of a javascript ...
0
votes
1answer
236 views

Simplex Method/Linear Programming Help

Before programming an algorithm which implements the simplex method, I thought I'd solve an issue before the actual programming work begins. For some reason, I can NEVER get the correct answer. I've ...
0
votes
1answer
55 views

converting values after decimal point to lesser precision [closed]

Possible Duplicate: Why can't decimal numbers be represented exactly in binary? I have a problem,am solving a simplex problem,while several iterations,in 1 iteration the value turned ...
0
votes
2answers
1k views

C/C++ implementation of simplex method

I am unable to find an implemenation of simplex method.I have a set of points and want to minimize theie distance so i only need the method simplex I have google before posting this question and ...