Skip to content

Commit

Permalink
add NotImplementedError
Browse files Browse the repository at this point in the history
  • Loading branch information
Rin204 committed Nov 14, 2023
1 parent 014164b commit 7fe497c
Show file tree
Hide file tree
Showing 12 changed files with 27 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class DisjointSparseTableBase_:
def ope(self, l, r):
pass
raise NotImplementedError

def __init__(self, A):
self.n = len(A)
Expand Down
4 changes: 2 additions & 2 deletions expansion/$tests/data_structure/SWAGBase_.test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

class SWAGBase_:
def ope(self, l, r):
pass
raise NotImplementedError

def e(self):
pass
raise NotImplementedError

def __init__(self):
self.L = []
Expand Down
2 changes: 1 addition & 1 deletion expansion/$tests/data_structure/SparseTableBase.test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class SparseTableBase_:
def ope(self, l, r):
pass
raise NotImplementedError

def __init__(self, A):
self.n = len(A)
Expand Down
10 changes: 5 additions & 5 deletions expansion/$tests/misc/MoBase_.test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@

class MoBase_:
def add_left(self, i):
pass
raise NotImplementedError

def add_right(self, i):
pass
raise NotImplementedError

def delete_left(self, i):
pass
raise NotImplementedError

def delete_right(self, i):
pass
raise NotImplementedError

def rem(self, i):
pass
raise NotImplementedError

def __init__(self, n, Q):
self.n = n
Expand Down
2 changes: 1 addition & 1 deletion expansion/data_structure/DisjointSparseTableBase_.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class DisjointSparseTableBase_:
def ope(self, l, r):
pass
raise NotImplementedError

def __init__(self, A):
self.n = len(A)
Expand Down
4 changes: 2 additions & 2 deletions expansion/data_structure/SWAGBase_.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
class SWAGBase_:
def ope(self, l, r):
pass
raise NotImplementedError

def e(self):
pass
raise NotImplementedError

def __init__(self):
self.L = []
Expand Down
2 changes: 1 addition & 1 deletion expansion/data_structure/SparseTableBase_.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class SparseTableBase_:
def ope(self, l, r):
pass
raise NotImplementedError

def __init__(self, A):
self.n = len(A)
Expand Down
10 changes: 5 additions & 5 deletions expansion/misc/MoBase_.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
class MoBase_:
def add_left(self, i):
pass
raise NotImplementedError

def add_right(self, i):
pass
raise NotImplementedError

def delete_left(self, i):
pass
raise NotImplementedError

def delete_right(self, i):
pass
raise NotImplementedError

def rem(self, i):
pass
raise NotImplementedError

def __init__(self, n, Q):
self.n = n
Expand Down
2 changes: 1 addition & 1 deletion src/data_structure/DisjointSparseTableBase_.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class DisjointSparseTableBase_:
def ope(self, l, r):
pass
raise NotImplementedError

def __init__(self, A):
self.n = len(A)
Expand Down
4 changes: 2 additions & 2 deletions src/data_structure/SWAGBase_.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
class SWAGBase_:
def ope(self, l, r):
pass
raise NotImplementedError

def e(self):
pass
raise NotImplementedError

def __init__(self):
self.L = []
Expand Down
2 changes: 1 addition & 1 deletion src/data_structure/SparseTableBase_.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class SparseTableBase_:
def ope(self, l, r):
pass
raise NotImplementedError

def __init__(self, A):
self.n = len(A)
Expand Down
10 changes: 5 additions & 5 deletions src/misc/MoBase_.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
class MoBase_:
def add_left(self, i):
pass
raise NotImplementedError

def add_right(self, i):
pass
raise NotImplementedError

def delete_left(self, i):
pass
raise NotImplementedError

def delete_right(self, i):
pass
raise NotImplementedError

def rem(self, i):
pass
raise NotImplementedError

def __init__(self, n, Q):
self.n = n
Expand Down

0 comments on commit 7fe497c

Please sign in to comment.