Skip to content

Commit

Permalink
Merge pull request #19 from Rin204/add-NotImplementedError
Browse files Browse the repository at this point in the history
add NotImplementedError
  • Loading branch information
Rin204 authored Nov 14, 2023
2 parents e1a4345 + 99a2da3 commit 6551d32
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 27 deletions.
10 changes: 5 additions & 5 deletions expansion/$tests/data_structure/lazysegtree2.test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@

class LazySegmentTreeBase_:
def ope(self, l, r):
return None
raise NotImplementedError

def e(self):
return None
raise NotImplementedError

def mapping(self, f, x):
return None
raise NotImplementedError

def composition(self, f, g):
return None
raise NotImplementedError

def id_(self):
return None
raise NotImplementedError

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

class SegmentTreeBase_:
def ope(self, l, r):
return None
raise NotImplementedError

def e(self):
return None
raise NotImplementedError

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

class SegmentTreeBase_:
def ope(self, l, r):
return None
raise NotImplementedError

def e(self):
return None
raise NotImplementedError

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

class SegmentTreeBase_:
def ope(self, l, r):
return None
raise NotImplementedError

def e(self):
return None
raise NotImplementedError

def __init__(self, n, init=None):
self.n = n
Expand Down
10 changes: 5 additions & 5 deletions expansion/data_structure/LazySegmentTreeBase_.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
class LazySegmentTreeBase_:
def ope(self, l, r):
return None
raise NotImplementedError

def e(self):
return None
raise NotImplementedError

def mapping(self, f, x):
return None
raise NotImplementedError

def composition(self, f, g):
return None
raise NotImplementedError

def id_(self):
return None
raise NotImplementedError

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

def e(self):
return None
raise NotImplementedError

def __init__(self, n, init=None):
self.n = n
Expand Down
4 changes: 2 additions & 2 deletions expansion/data_structure/segtree_/PointAddRangeSum.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
class SegmentTreeBase_:
def ope(self, l, r):
return None
raise NotImplementedError

def e(self):
return None
raise NotImplementedError

def __init__(self, n, init=None):
self.n = n
Expand Down
10 changes: 5 additions & 5 deletions src/data_structure/LazySegmentTreeBase_.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
class LazySegmentTreeBase_:
def ope(self, l, r):
return None
raise NotImplementedError

def e(self):
return None
raise NotImplementedError

def mapping(self, f, x):
return None
raise NotImplementedError

def composition(self, f, g):
return None
raise NotImplementedError

def id_(self):
return None
raise NotImplementedError

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

def e(self):
return None
raise NotImplementedError

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

0 comments on commit 6551d32

Please sign in to comment.