Skip to content

Commit

Permalink
package を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
mban259 committed May 13, 2024
1 parent 2572b07 commit 38c2b36
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/main/kotlin/collections/LazySegmentTree.kt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.example.collections
package collections

class LazySegmentTree<T>(
private val op: (T, T) -> T, // 演算
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/collections/SegmentTree.kt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.example.collections
package collections

// 演算、(左)単位元
class SegmentTree<T>(private val op: (T, T) -> T, private val id: T) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/graph/MaxFlow.kt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.example.graph
package graph

import java.util.*
import kotlin.collections.ArrayList
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/mathematics/Matrix.kt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.example.mathematics
package mathematics

typealias Num = Long

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/mathematics/ModInt.kt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.example.mathematics
package mathematics

class ModInt(_num: Number) : Number() {
companion object {
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/util/FastScanner.kt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.example.util
package util

import java.io.InputStream
import java.lang.NumberFormatException
Expand Down
1 change: 0 additions & 1 deletion src/test/kotlin/collections/LazySegmentTreeTest.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package collections

import org.example.collections.LazySegmentTree
import org.junit.jupiter.api.Test
import kotlin.random.Random
import kotlin.test.*
Expand Down
1 change: 0 additions & 1 deletion src/test/kotlin/collections/SegmentTreeTest.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package collections

import org.example.collections.SegmentTree
import org.junit.jupiter.api.Test
import kotlin.random.Random
import kotlin.test.*
Expand Down
1 change: 0 additions & 1 deletion src/test/kotlin/graph/MaxFlowTest.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package graph

import org.example.graph.MaxFlow
import org.junit.jupiter.api.Test
import kotlin.test.*

Expand Down
1 change: 0 additions & 1 deletion src/test/kotlin/mathematics/ModIntTest.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package mathematics

import org.example.mathematics.ModInt
import org.junit.jupiter.api.Test
import kotlin.test.*
import java.util.*
Expand Down

0 comments on commit 38c2b36

Please sign in to comment.