Skip to content

Commit

Permalink
MITライセンス削除
Browse files Browse the repository at this point in the history
  • Loading branch information
mban259 committed May 13, 2024
1 parent cd7ee2a commit 2572b07
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 40 deletions.
4 changes: 0 additions & 4 deletions src/main/kotlin/collections/LazySegmentTree.kt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
package org.example.collections

// Copyright (c) 2020 mban
// Released under the MIT license.
// https://opensource.org/licenses/MIT

class LazySegmentTree<T>(
private val op: (T, T) -> T, // 演算
private val id: T, // (T,op)の単位元
Expand Down
4 changes: 0 additions & 4 deletions src/main/kotlin/collections/SegmentTree.kt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
package org.example.collections

// Copyright (c) 2020 mban
// Released under the MIT license.
// https://opensource.org/licenses/MIT

// 演算、(左)単位元
class SegmentTree<T>(private val op: (T, T) -> T, private val id: T) {
companion object {
Expand Down
4 changes: 0 additions & 4 deletions src/main/kotlin/graph/MaxFlow.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ package org.example.graph
import java.util.*
import kotlin.collections.ArrayList

// Copyright (c) 2020 mban
// Released under the MIT license.
// https://opensource.org/licenses/MIT

typealias C = Int

// v 頂点の数
Expand Down
4 changes: 0 additions & 4 deletions src/main/kotlin/mathematics/Matrix.kt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
package org.example.mathematics

// Copyright (c) 2020 mban
// Released under the MIT license.
// https://opensource.org/licenses/MIT

typealias Num = Long

class Matrix(private val r: Int, private val c: Int) {
Expand Down
4 changes: 0 additions & 4 deletions src/main/kotlin/mathematics/ModInt.kt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
package org.example.mathematics

// Copyright (c) 2020 mban
// Released under the MIT license.
// https://opensource.org/licenses/MIT

class ModInt(_num: Number) : Number() {
companion object {
const val mod: Long = 1000000007L
Expand Down
4 changes: 0 additions & 4 deletions src/main/kotlin/util/FastScanner.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ import java.io.InputStream
import java.lang.NumberFormatException
import java.lang.StringBuilder

// Copyright (c) 2020 mban
// Released under the MIT license.
// https://opensource.org/licenses/MIT

class FastScanner {
companion object {
val input: InputStream = System.`in`
Expand Down
4 changes: 0 additions & 4 deletions src/test/kotlin/collections/LazySegmentTreeTest.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
// Copyright (c) 2020 mban
// Released under the MIT license.
// https://opensource.org/licenses/MIT

package collections

import org.example.collections.LazySegmentTree
Expand Down
4 changes: 0 additions & 4 deletions src/test/kotlin/collections/SegmentTreeTest.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
// Copyright (c) 2020 mban
// Released under the MIT license.
// https://opensource.org/licenses/MIT

package collections

import org.example.collections.SegmentTree
Expand Down
4 changes: 0 additions & 4 deletions src/test/kotlin/graph/MaxFlowTest.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
// Copyright (c) 2020 mban
// Released under the MIT license.
// https://opensource.org/licenses/MIT

package graph

import org.example.graph.MaxFlow
Expand Down
4 changes: 0 additions & 4 deletions src/test/kotlin/mathematics/ModIntTest.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
// Copyright (c) 2020 mban
// Released under the MIT license.
// https://opensource.org/licenses/MIT

package mathematics

import org.example.mathematics.ModInt
Expand Down

0 comments on commit 2572b07

Please sign in to comment.