Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2XB3FinalProject
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Schankula
2XB3FinalProject
Commits
9bd1664b
Commit
9bd1664b
authored
7 years ago
by
Christopher Schankula
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/master' into web
parents
0eff216e
743642c8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
21
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/sort/Range.java
+4
-0
4 additions, 0 deletions
src/sort/Range.java
with
4 additions
and
0 deletions
src/sort/Range.java
+
4
−
0
View file @
9bd1664b
...
...
@@ -37,11 +37,15 @@ public class Range<Key extends Comparable<Key>> {
this
.
boundType
=
bt
;
}
<<<<<<<
HEAD
public
<
T
>
boolean
inBounds
(
T
key
)
{
=======
<<<<<<<
HEAD
public
<
T
>
boolean
inBounds
(
T
key
)
{
=======
public
boolean
inBounds
(
Key
key
,
GeneralCompare
<
Key
>
gc
)
{
>>>>>>>
fd3aa70
...
add
Bound
and
Range
>>>>>>>
refs
/
remotes
/
origin
/
master
if
(
boundType
==
Bound
.
ANY
)
return
true
;
else
if
(
boundType
==
Bound
.
LOWER
)
return
gc
.
compare
(
lower
,
key
)
<=
0
;
else
if
(
boundType
==
Bound
.
UPPER
)
return
gc
.
compare
(
upper
,
key
)
>=
0
;
...
...
This diff is collapsed.
Click to expand it.
Prev
1
2
Next
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment