try catch is much more expensive than manual index check

This commit is contained in:
DBotThePony 2024-04-06 02:40:00 +07:00
parent eb99d328ac
commit 6cc27fb6e0
Signed by: DBot
GPG Key ID: DCC23B5715498507
9 changed files with 49 additions and 65 deletions

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=2.12.1
projectVersion=2.12.3
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

View File

@ -48,19 +48,17 @@ abstract class Byte2DArray : Array2D() {
private val mem = ByteArray(columns * rows)
override fun get(column: Int, row: Int): Byte {
try {
return mem[column + row * columns]
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
return mem[column + row * columns]
}
override fun set(column: Int, row: Int, value: Byte) {
try {
mem[column + row * columns] = value
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
mem[column + row * columns] = value
}
override fun fill(value: Byte) {

View File

@ -53,19 +53,17 @@ abstract class Char2DArray : Array2D() {
private val mem = CharArray(columns * rows)
override fun get(column: Int, row: Int): Char {
try {
return mem[column + row * columns]
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
return mem[column + row * columns]
}
override fun set(column: Int, row: Int, value: Char) {
try {
mem[column + row * columns] = value
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
mem[column + row * columns] = value
}
override fun fill(value: Char) {

View File

@ -100,19 +100,17 @@ abstract class Double2DArray : Array2D() {
private val mem = DoubleArray(columns * rows)
override fun get(column: Int, row: Int): Double {
try {
return mem[column + row * columns]
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
return mem[column + row * columns]
}
override fun set(column: Int, row: Int, value: Double) {
try {
mem[column + row * columns] = value
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
mem[column + row * columns] = value
}
override fun fill(value: Double) {

View File

@ -101,19 +101,17 @@ abstract class Float2DArray : Array2D() {
private val mem = FloatArray(columns * rows)
override fun get(column: Int, row: Int): Float {
try {
return mem[column + row * columns]
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
return mem[column + row * columns]
}
override fun set(column: Int, row: Int, value: Float) {
try {
mem[column + row * columns] = value
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
mem[column + row * columns] = value
}
override fun fill(value: Float) {

View File

@ -100,19 +100,17 @@ abstract class Int2DArray : Array2D() {
private val mem = IntArray(columns * rows)
override fun get(column: Int, row: Int): Int {
try {
return mem[column + row * columns]
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
return mem[column + row * columns]
}
override fun set(column: Int, row: Int, value: Int) {
try {
mem[column + row * columns] = value
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
mem[column + row * columns] = value
}
override fun fill(value: Int) {

View File

@ -100,19 +100,17 @@ abstract class Long2DArray : Array2D() {
private val mem = LongArray(columns * rows)
override fun get(column: Int, row: Int): Long {
try {
return mem[column + row * columns]
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
return mem[column + row * columns]
}
override fun set(column: Int, row: Int, value: Long) {
try {
mem[column + row * columns] = value
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
mem[column + row * columns] = value
}
override fun fill(value: Long) {

View File

@ -83,19 +83,17 @@ class Object2DArray<T> private constructor(
}
operator fun get(column: Int, row: Int): T {
try {
return mem[column * rows + row] as T
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
return mem[column * rows + row] as T
}
operator fun set(column: Int, row: Int, value: T) {
try {
mem[column * rows + row] = value
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
mem[column * rows + row] = value
}
val transposed get(): Object2DArray<T> {

View File

@ -53,19 +53,17 @@ abstract class Short2DArray : Array2D() {
private val mem = ShortArray(columns * rows)
override fun get(column: Int, row: Int): Short {
try {
return mem[column + row * columns]
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
return mem[column + row * columns]
}
override fun set(column: Int, row: Int, value: Short) {
try {
mem[column + row * columns] = value
} catch (err: IndexOutOfBoundsException) {
if (column !in 0 until columns || row !in 0 until rows)
throw IndexOutOfBoundsException("Matrix index out of bounds: $column x $row, while this array has dimensions of $columns x $rows")
}
mem[column + row * columns] = value
}
override fun fill(value: Short) {