Tagged Questions
The mutation tag has no wiki summary.
14
votes
0answers
445 views
How to calculate the number of mutants in a quite simple Fortran-77 Program [closed]
Next week I will make a presentation about mutation test in my class. The professor give me the paper An Experimental Determination of Sufficient Mutant Operators, written by A. Jefferson Offutt ...
7
votes
3answers
155 views
2 questions at the end of a functional programming course
Here seems to be the two biggest things I can take from the How to Design Programs (simplified Racket) course I just finished, straight from the lecture notes of the course:
1) Tail call ...
6
votes
2answers
185 views
Why don't lazy languages support mutation?
I'm studying programming language theory and I can't figure out a solid reason why lazy languages don't have mutation. Anyone know the reason?
4
votes
0answers
402 views
Library for DOM mutation events?
I need to trigger an action when content is added to a Web page. The updates can be of different nature (AJAX, delayed scripts, user action for example) and are not under my control.
I wanted to use ...
4
votes
5answers
569 views
applying crossover and mutation to a graph (genetic algorithm)
I'm playing arround with a Genetic Algorithm in which I want to evolve graphs.
Do you know a way to apply crossover and mutation when the chromosomes are graphs?
Or am I missing a coding for the ...
3
votes
1answer
124 views
string manipulation- middle 3 letters
After prompting for a string, I am trying to display the middle three characters of that string. How would I do that?
this is what I tried:
String middle3 = (string.length < 3) ? null : ...
3
votes
2answers
111 views
Scala objects not changing their internal state
I am seeing a problem with some Scala 2.7.7 code I'm working on, that should not happen if it the equivalent was written in Java. Loosely, the code goes creates a bunch of card players and assigns ...
2
votes
2answers
158 views
Can mutator methods be applied to objects in an ArrayList?
I'm having some trouble with my java program and I'm not sure if this is the problem but would calling a mutator method on an object inside an araylist work as intended?
For example
public class ...
2
votes
3answers
208 views
Applying mutation in steady-state genetic algorithm
I’m implementing a steady-state genetic algorithm to perform symbolic regression.
My questions are about the relation between mutation and crossover operators.
I always consult a mutation ...
2
votes
6answers
1k views
In Java/Swing, is there a way to legally “attempt to mutate in notification”?
I was wondering if there is some sort of magic I can use to get around an IllegalStateException and allow a JTextField to "attempt to mutate in notification", or in other words to set its own text if ...
2
votes
1answer
216 views
how do python module variables work?
I used to think that once a module was loaded, no re-importing would be done if other files imported that same module, or if it were imported in different ways. For example, I have mdir/__init__.py, ...
1
vote
3answers
114 views
scala: how to avoid mutation?
It is a commonplace when one needs to accumulate some data. The way I get used to do it is appending data chunks to array. But it's a bad practice in scala, so how can I avoid it?
1
vote
1answer
38 views
What is mutation in cassandra?
What is mutation in cassandra? What is it doing? i didnt find any full information about it...
Can you answer or share the link with manual or description
Thanks
1
vote
2answers
314 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 ...
1
vote
2answers
276 views
c++ Genetic Algorithm Mutation error
I Have a problem with the mutation function within my genetic Algorithm. I can't quite see what I am doing wrong either. I've looked at this code for a while and I think the logic is correct, it's ...
1
vote
1answer
252 views
“set!: not an identifier in:…” plt scheme error
what's wrong with this code in Dr.Scheme using Pretty Big? i seem to remember doing similar things in the past with no problem.
(lambda (x y) (set! (Frame-variables res) (append (Frame-variables res) ...
0
votes
2answers
95 views
Convert a MySQL table into a ColumnFamily in Cassandra : Slow batch mutations with Hector
I have a very large MySQL table (billions of rows, with dozens of columns) I would like to convert into a ColumnFamily in Cassandra. I'm using Hector.
I first create my schema as such :
String ...
0
votes
1answer
29 views
checking abnormal dom modification
How do we distinguish normal DOM modification(by web page itself) and abnormal DOM modification(by attacker)?
I found no way in mutation event of javascript. Is it possible?
0
votes
4answers
89 views
Simple string mistake
I am trying to create a string method in java where it prompts someone to enter a string longer than three characters. Once entered, I want to display the middle three characters of that string. ...
0
votes
2answers
46 views
string mutation
I am trying to create a string mutation that, after a prompt for a city and state, would output the state in uppercase, followed directly by the city in lowercase, followed directly by the state again ...
0
votes
1answer
43 views
0
votes
1answer
100 views
trying to make a scheme procedure
trying to make a scheme procedure called make-odd-mapper! its supposed to be a procedure that takes one input, a procedure, and produces a procedure as an output
ex:
(define i4 (mlist 10 2 30 4))
...
0
votes
2answers
65 views
Why not allow mutation of the this binding?
I'm building a interpreter/compiler for a school project (well now its turning into a hobby project) and an instructor warned me not to allow mutation of the 'this' binding (he said it was gross and ...
0
votes
4answers
302 views
Explain JAVA code
I need some help to explain the meaning from line 5 to line 9. Thanks
String words = "Rain Rain go away";
String mutation1, mutation2, mutation3, mutation4;
mutation1 = words.toUpperCase();
...