Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
35answers
2k views

How to exercise and feel well when programming? [closed]

While I'm sitting here in my expensive chair which was told to me were gonna help me with my neck and shoulder pains; it didn't. So don't go spend $2,000 on a chair because it's not gonna help. I am ...
1
vote
3answers
135 views

How to do a Fitness Function

I'm working on a project which will have a selected set of data and each data will have different attributes. I will need to use a fitness function to choose the data that best matches my selected ...
1
vote
2answers
311 views

Solve crossword puzzle with genetic algorithm, fitness, mutation

I'm trying hard to do a lab for school. I'm trying to solve a crossword puzzle using genetic algorithms. Problem is that is not very good (it is still too random) I will try to give a brief ...
0
votes
1answer
50 views

Minimising greatest distance moved

I'm trying to find if there are any solutions for a problem I've got. I've got X people and Y positions to place them in. Sometimes there might be more people than positions, but in the default case ...
0
votes
0answers
33 views

Does Pex(v0.94) have “Microsoft.Pex.Graphs.dll”? or Where can I download old versions of Pex which have this dll?

I downloaded a "fitness"/"fitnex" project which is a extension of Pex. It requires a reference of "Microsoft.Pex.Graphs.dll". I have installed Pex(version 0.94), however, I cannot find this dll. ...
0
votes
3answers
179 views

Java Fitness Function Not Working

I have a fitness function as part of a lab and wish to apply it to a set of 'weights' (ArrayList weights). I have created the array and stored some values in it. I have created random binary strings ...
0
votes
4answers
244 views

Java Fitness Function

I am having trouble getting the fitness function to work on my code. All that I end up with is the binary String "10101". I would greatly appreciate it if somebody could assist me as I have spent an ...
0
votes
0answers
587 views

Java: Solving 15 Puzzle using Fitness functions

I am currently working on a project to solve a 15 Puzzle using fitness functions. There are 3 kinds of fitness functions that can be used, Fitness function1= 1 - (number of misplaced tiles/total ...
0
votes
1answer
138 views

fitness function bottleneck resolution c#

private void CalculateFitness(TimeTable timeTable) { int score = 0, DAYS_NUM = 5; score = timeTable.Exams.SelectMany(exam => exam.Students) ...
0
votes
1answer
61 views

*Passing a Method into a Class

I'm coding a small class that maximizes a given function F and returns the coordinates. For example in maximizing the 1-dimensional fitness function below I currently have: using System; public ...