Skip to content
Snippets Groups Projects
Commit 549a9439 authored by Wiktor Walentynowicz's avatar Wiktor Walentynowicz :construction_worker_tone1:
Browse files

Update unmerge.cpp - bad number in option 3

parent 2c699238
No related branches found
No related tags found
No related merge requests found
Pipeline #275 passed
...@@ -78,7 +78,7 @@ void split(int option, int id, vector<string_piece>& v_sp, vector<tagged_lemma>& ...@@ -78,7 +78,7 @@ void split(int option, int id, vector<string_piece>& v_sp, vector<tagged_lemma>&
length = v_tr[id].length - 2; length = v_tr[id].length - 2;
v_sp.insert(v_sp.begin() + (id+1), string_piece("by")); v_sp.insert(v_sp.begin() + (id+1), string_piece("by"));
v_tl.insert(v_tl.begin() + (id+1), tagged_lemma("by", "TT-------------")); v_tl.insert(v_tl.begin() + (id+1), tagged_lemma("by", "TT-------------"));
v_tr.insert(v_tr.begin() + (id+1), token_range(v_tr[id].start+2, size_t(2))); v_tr.insert(v_tr.begin() + (id+1), token_range(v_tr[id].start+length, size_t(2)));
} }
else if(option == 4) { // Tag VE (wpast) else if(option == 4) { // Tag VE (wpast)
c_tag1[1] = 'w'; c_tag1[1] = 'w';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment