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
ba9debb5
Commit
ba9debb5
authored
7 years ago
by
Christopher Schankula
Browse files
Options
Downloads
Patches
Plain Diff
add BasicSearch wrapper in TrawlExpert model
parent
87900e9c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/model/TrawlExpert.java
+5
-0
5 additions, 0 deletions
src/model/TrawlExpert.java
with
5 additions
and
0 deletions
src/model/TrawlExpert.java
+
5
−
0
View file @
ba9debb5
...
...
@@ -7,6 +7,7 @@ import data.DataStore;
import
data.FileProcessor
;
import
data.Record
;
import
search.BasicSearch
;
import
search.BasicSearchResult
;
import
sort.KDT
;
public
class
TrawlExpert
{
...
...
@@ -32,4 +33,8 @@ public class TrawlExpert {
public
Iterable
<
Integer
>
listAllSpecies
(){
return
BioTree
.
getNonEmptyChildren
(
2
);
}
public
BasicSearchResult
rangeSearch
(
Integer
taxonId
,
Integer
yearLo
,
Integer
yearHi
)
{
return
BasicSearch
.
range
(
taxonId
,
yearLo
,
yearHi
);
}
}
This diff is collapsed.
Click to expand it.
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