[Haskell-cafe] Refactoring recklessly

2006-12-12 Thread Greg Fitzgerald
I'd like to be able to reorganize my code and then verify that I didn't change any functionality. That is, the old and new code have precisely the same meaning. Also, I'd like to be able to change a function and verify that efficiency was the only thing affected. Are either of these possible

Re: [Haskell-cafe] Refactoring recklessly

2006-12-12 Thread Neil Mitchell
Hi I'd like to be able to reorganize my code and then verify that I didn't change any functionality. That is, the old and new code have precisely the same meaning. Also, I'd like to be able to change a function and verify that efficiency was the only thing affected. Are either of these

Re: [Haskell-cafe] Refactoring recklessly

2006-12-12 Thread Alec Berryman
Greg Fitzgerald on 2006-12-12 11:24:58 -0800: I'd like to be able to reorganize my code and then verify that I didn't change any functionality. That is, the old and new code have precisely the same meaning. Also, I'd like to be able to change a function and verify that efficiency was the

Re: [Haskell-cafe] Refactoring recklessly

2006-12-12 Thread Joachim Breitner
Hi, Am Dienstag, den 12.12.2006, 11:24 -0800 schrieb Greg Fitzgerald: I'd like to be able to reorganize my code and then verify that I didn't change any functionality. That is, the old and new code have precisely the same meaning. Also, I'd like to be able to change a function and verify

Re: [Haskell-cafe] Refactoring recklessly

2006-12-12 Thread Pepe Iborra
On 12/12/2006, at 20:31, Alec Berryman wrote: Greg Fitzgerald on 2006-12-12 11:24:58 -0800: I'd like to be able to reorganize my code and then verify that I didn't change any functionality. That is, the old and new code have precisely the same meaning. Also, I'd like to be able to