Skip to content
Open

Dev #14

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
dffef1e
besouro automatic message
Oct 12, 2015
00273ad
besouro automatic message
Oct 12, 2015
ac539ff
besouro automatic message
Oct 12, 2015
6a7b590
besouro automatic message
Oct 12, 2015
8b042fe
besouro automatic message
Oct 12, 2015
63c0d5d
besouro automatic message
Oct 12, 2015
95cf94a
besouro automatic message
Oct 12, 2015
1a1d941
besouro automatic message
Oct 12, 2015
b949ec0
besouro automatic message
Oct 12, 2015
4ccb0a9
besouro automatic message
Oct 12, 2015
39dd065
new Rules implemented
Maxaxa Oct 12, 2015
bcd0975
besouro automatic message
Oct 12, 2015
2a2c52f
besouro automatic message
Oct 12, 2015
72eec55
besouro automatic message
Oct 12, 2015
cdcb694
besouro automatic message
Oct 12, 2015
83a3497
besouro automatic message
Oct 12, 2015
2f36cc2
Fill grid with cells, check for balance between dead and alive cells,
Maxaxa Oct 12, 2015
dda3f71
added the random function, but the balance gets sometimes out of hand
Maxaxa Oct 12, 2015
b29d347
besouro automatic message
Oct 12, 2015
ac14f27
besouro automatic message
Oct 13, 2015
85745a1
besouro automatic message
Oct 13, 2015
0552193
besouro automatic message
Oct 13, 2015
33e11db
besouro automatic message
Oct 13, 2015
4452e74
besouro automatic message
Oct 13, 2015
8c4fca1
besouro automatic message
Oct 13, 2015
89114c9
besouro automatic message
Oct 13, 2015
9d2831e
besouro automatic message
Oct 13, 2015
453640f
besouro automatic message
Oct 13, 2015
b24ad73
besouro automatic message
Oct 13, 2015
cab5cd7
besouro automatic message
Oct 13, 2015
012deb0
besouro automatic message
Oct 13, 2015
e0fad5e
besouro automatic message
Oct 13, 2015
ee116ed
besouro automatic message
Oct 13, 2015
0a9390d
besouro automatic message
Oct 13, 2015
435c3b6
besouro automatic message
Oct 13, 2015
a51e071
besouro automatic message
Oct 13, 2015
90f6b54
besouro automatic message
Oct 13, 2015
4485eef
besouro automatic message
Oct 13, 2015
623736c
besouro automatic message
Oct 13, 2015
a49780e
besouro automatic message
Oct 13, 2015
27ec3ce
besouro automatic message
Oct 13, 2015
08a9d70
besouro automatic message
Oct 13, 2015
06b9b07
besouro automatic message
Oct 13, 2015
167c831
besouro automatic message
Oct 13, 2015
aa5eb6b
besouro automatic message
Oct 13, 2015
ac1c75f
besouro automatic message
Oct 13, 2015
7774976
besouro automatic message
Oct 13, 2015
b9dd03a
besouro automatic message
Oct 13, 2015
9de0811
besouro automatic message
Oct 13, 2015
f82ab31
besouro automatic message
Oct 13, 2015
3eb7476
fixed the bug which produced the overflow error and made the function
Maxaxa Oct 13, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .besouro/201510121641484/actions.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
FileOpenedAction 1444657308681 Cell.java 964 8 19 0
UnitTestCaseAction 1444657320274 TestCell.java OK
UnitTestSessionAction 1444657320283 TestCell (1) OK
UnitTestCaseAction 1444657330308 TestGrid.java OK
UnitTestSessionAction 1444657330318 TestGrid (1) OK
RefactoringAction 1444657564253 Cell.java RENAME Cell(int, int)=>Cell() METHOD
RefactoringAction 1444657569789 Cell.java RENAME Cell(String)=>Cell(String, int, int) METHOD
RefactoringAction 1444657573311 Cell.java REMOVE Cell() METHOD
EditAction 1444657578747 Cell.java 943 7 19 0
CompilationAction 1444657579755 Grid.java
CompilationAction 1444657579755 TestCell.java
CompilationAction 1444657579756 TestGrid.java
CompilationAction 1444657775271 TestGrid.java
CompilationAction 1444657778407 TestCell.java
CompilationAction 1444657848514 Grid.java
EditAction 1444658048231 Grid.java 642 2 6 0
UnitTestCaseAction 1444658050641 TestGrid.java OK
UnitTestSessionAction 1444658050642 TestGrid (1) OK
RefactoringAction 1444659193694 Cell.java REMOVE hashCode() METHOD
RefactoringAction 1444659193694 Cell.java REMOVE equals(Object) METHOD
RefactoringAction 1444659211232 Cell.java ADD int hashCode() METHOD
RefactoringAction 1444659211236 Cell.java ADD boolean equals(Object) METHOD
FileOpenedAction 1444659368777 TestCell.java 1051 5 10 4
RefactoringAction 1444659396621 TestCell.java ADD import org.junit.Before IMPORT
RefactoringAction 1444659441280 TestCell.java ADD Cell aliveCell FIELD
RefactoringAction 1444659441280 TestCell.java ADD Cell deadCell FIELD
EditAction 1444659506041 Cell.java 1142 7 21 0
EditAction 1444659509408 TestCell.java 724 3 6 2
UnitTestCaseAction 1444659515594 TestGrid.java OK
UnitTestSessionAction 1444659515595 TestGrid (1) OK
RefactoringAction 1444659541184 TestCell.java ADD void testCellUpdateAliveCellWithFourNeighborsShouldDie() METHOD
EditAction 1444659553737 TestCell.java 891 4 8 3
UnitTestCaseAction 1444659554774 TestCell.java FAIL
UnitTestSessionAction 1444659554774 TestCell (1) FAIL
FileOpenedAction 1444659564419 Cell.java 555 4 4 0
EditAction 1444659767369 Cell.java 1210 7 21 0
UnitTestCaseAction 1444659768509 TestCell.java OK
UnitTestSessionAction 1444659768510 TestCell (1) OK
RefactoringAction 1444659796168 TestCell.java ADD void testCellUpdateDeadCellWithThreeNeighborsShouldLive() METHOD
EditAction 1444659806895 TestCell.java 1060 5 10 4
UnitTestCaseAction 1444659808094 TestCell.java OK
UnitTestSessionAction 1444659808094 TestCell (1) OK
RefactoringAction 1444660379096 TestGrid.java ADD void testTwoNeighborCellsShouldHaveOneNeigbor()/2 METHOD
RefactoringAction 1444660394614 TestGrid.java REMOVE testTwoNeighborCellsShouldHaveOneNeigbor()/2 METHOD
EditAction 1444660426503 TestGrid.java 1146 3 19 3
EditAction 1444660474136 Grid.java 675 2 7 0
UnitTestCaseAction 1444660476755 TestCell.java OK
UnitTestSessionAction 1444660476755 TestCell (1) OK
UnitTestCaseAction 1444660516873 TestGrid.java OK
UnitTestSessionAction 1444660516874 TestGrid (1) OK
EditAction 1444660534114 Grid.java 642 2 6 0
FileOpenedAction 1444661271189 GameOfLife.java 74 0 0 0
3 changes: 3 additions & 0 deletions .besouro/201510121641484/besouroEpisodes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1444657320283 regression 1 11 true
1444657330318 regression 1 0 true
1444658050642 refactoring 2A 486 true
Empty file.
3 changes: 3 additions & 0 deletions .besouro/201510121641484/randomHeuristicEpisodes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1444657320283 regression 1 11 false
1444657330318 regression 1 0 true
1444658050642 refactoring 2A 486 true
Empty file.
3 changes: 3 additions & 0 deletions .besouro/201510121641484/zorroEpisodes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1444657320283 regression 1 11 false
1444657330318 regression 1 10 false
1444658050642 refactoring 2A 720 false
72 changes: 72 additions & 0 deletions .besouro/20151012211902907/actions.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
FileOpenedAction 1444673943419 GameOfLife.java 76 0 0 0
FileOpenedAction 1444673947507 TestGrid.java 1146 3 19 3
FileOpenedAction 1444673949305 TestCell.java 1060 5 10 4
RefactoringAction 1444673986379 GameOfLifeTest.java ADD void test() METHOD
RefactoringAction 1444673986391 GameOfLifeTest.java ADD import org.junit.Assert.* IMPORT
RefactoringAction 1444673986410 GameOfLifeTest.java ADD GameOfLifeTest.java CLASS
FileOpenedAction 1444673986664 GameOfLifeTest.java 215 1 1 0
RefactoringAction 1444674001990 GameOfLifeTest.java REMOVE GameOfLifeTest.java CLASS
RefactoringAction 1444674234411 GameOfLifeTest.java RENAME test()=>void testG() METHOD
RefactoringAction 1444674238427 GameOfLifeTest.java RENAME testG()=>void test() METHOD
RefactoringAction 1444674243460 GameOfLifeTest.java RENAME test()=>void testFill() METHOD
RefactoringAction 1444674248003 GameOfLifeTest.java RENAME testFill()=>void testFillHashMap() METHOD
RefactoringAction 1444674268529 GameOfLifeTest.java RENAME testFillHashMap()=>void testFillHashSet() METHOD
RefactoringAction 1444674301038 GameOfLifeTest.java RENAME testFillHashSet()=>void testFillHashSetR() METHOD
RefactoringAction 1444674302545 GameOfLifeTest.java RENAME testFillHashSetR()=>void testFillHashSetRe() METHOD
RefactoringAction 1444674304055 GameOfLifeTest.java RENAME testFillHashSetRe()=>void testFillHashSet() METHOD
RefactoringAction 1444674306068 GameOfLifeTest.java RENAME testFillHashSet()=>void testFillHashS() METHOD
RefactoringAction 1444674308076 GameOfLifeTest.java RENAME testFillHashS()=>void testFillHash() METHOD
RefactoringAction 1444674312586 GameOfLifeTest.java RENAME testFillHash()=>void testFillHashRe() METHOD
RefactoringAction 1444674314098 GameOfLifeTest.java RENAME testFillHashRe()=>void testFillHashReturn() METHOD
RefactoringAction 1444674316105 GameOfLifeTest.java RENAME testFillHashReturn()=>void testFillHashReturnFalse() METHOD
RefactoringAction 1444674339130 GameOfLifeTest.java RENAME testFillHashReturnFalse()=>void testFillHashR() METHOD
RefactoringAction 1444674349515 GameOfLifeTest.java REMOVE GameOfLifeTest.java CLASS
RefactoringAction 1444674368704 TestGrid.java ADD void test FIELD
RefactoringAction 1444674371216 TestGrid.java RENAME test=>void testFillHash FIELD
RefactoringAction 1444674372739 TestGrid.java RENAME testFillHash=>void testFillHashSet FIELD
RefactoringAction 1444674400482 TestGrid.java RENAME testFillHashSet=>void testFillHashSetWith FIELD
RefactoringAction 1444674406533 TestGrid.java RENAME testFillHashSetWith=>void testFillHashSetWithIsEmpty FIELD
RefactoringAction 1444674413549 TestGrid.java RENAME testFillHashSetWithIsEmpty=>void testFillHashSetWithIsEmpty_ReturnFalse() METHOD
RefactoringAction 1444674636562 TestGrid.java RENAME testFillHashSetWithIsEmpty_ReturnFalse()=>void testFillGridWithIsEmpty_ReturnFalse() METHOD
RefactoringAction 1444675117181 TestGrid.java ADD import java.util.HashSe IMPORT
RefactoringAction 1444675121197 TestGrid.java RENAME import java.util.HashSe=>import java.util.HashSeT IMPORT
RefactoringAction 1444675124739 TestGrid.java RENAME import java.util.HashSeT=>import java.util.HashSet IMPORT
RefactoringAction 1444675138927 TestGrid.java REMOVE import java.util.HashSet IMPORT
EditAction 1444675140938 TestGrid.java 1337 4 23 4
CompilationAction 1444675141570 TestGrid.java
CompilationAction 1444675141570 TestGrid.java
FileOpenedAction 1444675185588 SudokuVerifier.java 5508 13 48 0
RefactoringAction 1444675329063 TestGrid.java ADD import java IMPORT
RefactoringAction 1444675330580 TestGrid.java RENAME import java=>import java.u IMPORT
RefactoringAction 1444675337091 TestGrid.java RENAME import java.u=>import java.util IMPORT
RefactoringAction 1444675338600 TestGrid.java REMOVE import java.util IMPORT
RefactoringAction 1444675340609 TestGrid.java ADD import java.util.h IMPORT
RefactoringAction 1444675342117 TestGrid.java REMOVE import java.util.h IMPORT
RefactoringAction 1444675353151 TestGrid.java ADD import java.util.h IMPORT
RefactoringAction 1444675356670 TestGrid.java RENAME import java.util.h=>import java.util.HashSet IMPORT
CompilationAction 1444675381343 TestGrid.java
CompilationAction 1444675381343 TestGrid.java
RefactoringAction 1444675613145 TestGrid.java ADD import java.util.HashSet/2 IMPORT
RefactoringAction 1444675614655 TestGrid.java RENAME import java.util.HashSet/2=>import java.util.HashSet.is IMPORT
RefactoringAction 1444675616164 TestGrid.java RENAME import java.util.HashSet.is=>import java.util.HashSet.isEmp IMPORT
RefactoringAction 1444675617179 TestGrid.java RENAME import java.util.HashSet.isEmp=>import java.util.HashSet.isEmpty IMPORT
RefactoringAction 1444675687751 TestGrid.java REMOVE import java.util.HashSet.isEmpty IMPORT
RefactoringAction 1444675689770 TestGrid.java ADD import java.util.HashSet.isEmpty IMPORT
RefactoringAction 1444675698298 TestGrid.java REMOVE import java.util.HashSet.isEmpty IMPORT
RefactoringAction 1444675711826 TestGrid.java ADD import java.util.Set IMPORT
RefactoringAction 1444675720846 TestGrid.java RENAME import java.util.Set=>import java.util.HashSet.isEmpty IMPORT
RefactoringAction 1444675722356 TestGrid.java REMOVE import java.util.HashSet.isEmpty IMPORT
RefactoringAction 1444675783832 TestGrid.java ADD import java.util.Set IMPORT
RefactoringAction 1444675892501 TestGrid.java ADD import java.util.Arrays IMPORT
CompilationAction 1444675894513 TestGrid.java
CompilationAction 1444675894514 TestGrid.java
RefactoringAction 1444675901548 TestGrid.java REMOVE import java.util.Arrays IMPORT
CompilationAction 1444675902101 TestGrid.java
CompilationAction 1444675902101 TestGrid.java
CompilationAction 1444675902266 TestGrid.java
CompilationAction 1444675902267 TestGrid.java
RefactoringAction 1444675962525 GameOfLifeTest.java ADD GameOfLifeTest.java CLASS
EditAction 1444676002571 TestGrid.java 1385 4 23 4
EditAction 1444676348246 TestGrid.java 1388 4 23 4
EditAction 1444676427581 TestGrid.java 1394 4 23 4
EditAction 1444676487639 Grid.java 642 2 6 0
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
36 changes: 36 additions & 0 deletions .besouro/20151013011235415/actions.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
FileOpenedAction 1444687955903 GameOfLife.java 539 2 3 0
UnitTestCaseAction 1444687959975 TestGrid.java OK
UnitTestSessionAction 1444687959977 TestGrid (1) OK
UnitTestCaseAction 1444687964909 TestGrid.java OK
UnitTestSessionAction 1444687964909 TestGrid (1) OK
UnitTestCaseAction 1444687971664 TestGrid.java FAIL
UnitTestSessionAction 1444687971665 TestGrid (1) FAIL
UnitTestCaseAction 1444687978271 TestGrid.java OK
UnitTestSessionAction 1444687978272 TestGrid (1) OK
UnitTestCaseAction 1444687979687 TestGrid.java OK
UnitTestSessionAction 1444687979688 TestGrid (1) OK
UnitTestCaseAction 1444687981433 TestGrid.java FAIL
UnitTestSessionAction 1444687981433 TestGrid (1) FAIL
UnitTestCaseAction 1444688003776 GameOfLifeTest.java OK
UnitTestSessionAction 1444688003777 GameOfLifeTest OK
UnitTestCaseAction 1444688007854 TestCell.java OK
UnitTestSessionAction 1444688007854 TestCell (1) OK
UnitTestCaseAction 1444688010936 TestCell.java OK
UnitTestSessionAction 1444688010937 TestCell (1) OK
UnitTestCaseAction 1444688012185 TestCell.java OK
UnitTestSessionAction 1444688012186 TestCell (1) OK
UnitTestCaseAction 1444688015477 GameOfLifeTest.java OK
UnitTestSessionAction 1444688015478 GameOfLifeTest OK
UnitTestCaseAction 1444688016783 GameOfLifeTest.java OK
UnitTestSessionAction 1444688016784 GameOfLifeTest OK
UnitTestCaseAction 1444688048230 TestGrid.java FAIL
UnitTestSessionAction 1444688048231 TestGrid (1) FAIL
EditAction 1444688501950 Grid.java 1843 7 20 0
UnitTestCaseAction 1444688504947 TestGrid.java FAIL
UnitTestSessionAction 1444688504947 TestGrid (1) FAIL
UnitTestCaseAction 1444688510065 TestGrid.java OK
UnitTestSessionAction 1444688510066 TestGrid (1) OK
UnitTestCaseAction 1444688512601 TestGrid.java FAIL
UnitTestSessionAction 1444688512602 TestGrid (1) FAIL
UnitTestCaseAction 1444688514356 TestGrid.java FAIL
UnitTestSessionAction 1444688514357 TestGrid (1) FAIL
11 changes: 11 additions & 0 deletions .besouro/20151013011235415/besouroEpisodes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
1444687959977 regression 1 4 true
1444687964909 regression 1 0 true
1444687978272 regression 2 6 true
1444687979688 regression 1 0 true
1444688003777 regression 2 22 true
1444688007854 regression 1 0 true
1444688010937 regression 1 0 true
1444688012186 regression 1 0 true
1444688015478 regression 1 0 true
1444688016784 regression 1 0 true
1444688510066 regression 2 461 true
Empty file.
11 changes: 11 additions & 0 deletions .besouro/20151013011235415/randomHeuristicEpisodes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
1444687959977 regression 1 4 true
1444687964909 regression 1 0 false
1444687978272 regression 2 6 true
1444687979688 regression 1 0 false
1444688003777 regression 2 22 false
1444688007854 regression 1 0 false
1444688010937 regression 1 0 true
1444688012186 regression 1 0 true
1444688015478 regression 1 0 true
1444688016784 regression 1 0 true
1444688510066 regression 2 461 false
Empty file.
11 changes: 11 additions & 0 deletions .besouro/20151013011235415/zorroEpisodes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
1444687959977 regression 1 4 false
1444687964909 regression 1 4 false
1444687978272 regression 2 13 false
1444687979688 regression 1 1 false
1444688003777 regression 2 24 false
1444688007854 regression 1 4 false
1444688010937 regression 1 3 false
1444688012186 regression 1 1 false
1444688015478 regression 1 3 false
1444688016784 regression 1 1 false
1444688510066 regression 2 493 false
Loading