1
vote
0answers
39 views

Three-machine proportionate flow shop problem with unequal machine

As part of an academic project I wrote a code about dynamic programming that solves the "Three-machine proportionate flow shop problem with unequal machine". My major problem is that the code takes a ...
1
vote
0answers
357 views

How to optimize this maze solver?

I've written C# code for solving a maze problem. It works, but I want to optimize it so that it could give me all paths. To solve the maze, I walk on the zeros and assumed that the final is reaching ...
1
vote
0answers
1k views

DataTable 'adapter' To Html table generator

this is a project i am working on it generates an html table out of a query result. (the result DataTable of an sql command via SP) this section of the project ...
0
votes
0answers
300 views

Drawing faster than SlimDX?

Here is the SlimDX version: ...
0
votes
0answers
92 views

Speed up position check for embedded length on stream

I received help with adding the length of a stream in the first 4 bytes, meaning it's there as an int. I am adding it at the start and sending it, while the ...