Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 2 | 1 | 0.988 | statement_sequence[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 801 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/LogarithmicAxis.java |
2 | 5 | 965 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/LogarithmicAxis.java |
| |||||
if (zeroTickFlag) { //if did zero tick last iter then --j; //decrement to do 1.0 tick now } //calculate power-of-ten value for tick: currentTickValue = (i >= 0) ? Math.pow(10, i) + (Math.pow(10, i) * j): -(Math.pow(10, -i) - (Math.pow(10, -i - 1) * j)); |
| |||||
if (zeroTickFlag) { //if did zero tick last iter then --j; } //decrement to do 1.0 tick now tickVal = (i >= 0) ? Math.pow(10, i) + (Math.pow(10, i) * j): -(Math.pow(10, -i) - (Math.pow(10, -i - 1) * j)); |
| |||
if (zeroTickFlag) { //if did zero tick last iter then --j; //decrement to do 1.0 tick now } //calculate power-of-ten value for tick: //decrement to do 1.0 tick now [[#variable18e11320]]= (i >= 0) ? Math.pow(10, i) + (Math.pow(10, i) * j): -(Math.pow(10, -i) - (Math.pow(10, -i - 1) * j)); |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18e11320]] | currentTickValue |
1 | 2 | [[#18e11320]] | tickVal |