Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
corpus2
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Analysers
corpus2
Commits
708b5372
Commit
708b5372
authored
13 years ago
by
Paweł Kędzia
Browse files
Options
Downloads
Patches
Plain Diff
Fix poliqarpcorpusreader/poliqarpdocumentreader
parent
8d39b84d
Branches
Branches containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libcorpus2_whole/io/poliqarpcorpusreader.cpp
+4
-1
4 additions, 1 deletion
libcorpus2_whole/io/poliqarpcorpusreader.cpp
libcorpus2_whole/io/poliqarpdocumentreader.cpp
+3
-1
3 additions, 1 deletion
libcorpus2_whole/io/poliqarpdocumentreader.cpp
with
7 additions
and
2 deletions
libcorpus2_whole/io/poliqarpcorpusreader.cpp
+
4
−
1
View file @
708b5372
...
...
@@ -17,7 +17,10 @@ boost::shared_ptr<Corpus> PoliqarpCorpusReader::read(const std::string& corpus_f
this
->
pq_doc_reader_
=
boost
::
shared_ptr
<
PoliqarpDocumentReader
>
(
new
PoliqarpDocumentReader
(
tagset_
,
corpus_file
));
while
((
doc
=
this
->
pq_doc_reader_
->
read
()))
{
while
(
1
)
{
if
(
!
(
doc
=
this
->
pq_doc_reader_
->
read
()))
{
break
;
}
corpus
->
add_document
(
doc
);
}
...
...
This diff is collapsed.
Click to expand it.
libcorpus2_whole/io/poliqarpdocumentreader.cpp
+
3
−
1
View file @
708b5372
...
...
@@ -12,9 +12,11 @@ PoliqarpDocumentReader::PoliqarpDocumentReader(const Tagset& tagset, const std::
boost
::
shared_ptr
<
Document
>
PoliqarpDocumentReader
::
read
()
{
boost
::
shared_ptr
<
Document
>
document
=
boost
::
make_shared
<
Document
>
()
;
boost
::
shared_ptr
<
Document
>
document
;
boost
::
shared_ptr
<
Chunk
>
chunk
=
this
->
pqr_
->
get_next_chunk
();
if
(
chunk
)
{
document
=
boost
::
make_shared
<
Document
>
();
document
->
add_paragraph
(
chunk
);
}
return
document
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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