From 053aac6c16f36b0a84eb14209ad98f930e2094cd Mon Sep 17 00:00:00 2001 From: Adam Radziszewski <adam.radziszewski@pwr.wroc.pl> Date: Tue, 11 Oct 2011 11:44:26 +0200 Subject: [PATCH] fixed Tagset::split_tag --- CMakeLists.txt | 2 +- libcorpus2/tagset.cpp | 16 ++++++++++++---- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c908963..3f62621 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ PROJECT(Corpus2Library) set(corpus2_ver_major "1") set(corpus2_ver_minor "0") -set(corpus2_ver_patch "12") +set(corpus2_ver_patch "13") cmake_minimum_required(VERSION 2.8.0) diff --git a/libcorpus2/tagset.cpp b/libcorpus2/tagset.cpp index 5869159..ab47816 100644 --- a/libcorpus2/tagset.cpp +++ b/libcorpus2/tagset.cpp @@ -557,12 +557,20 @@ std::vector<Tag> Tagset::split_tag(const Tag& tag) const if ((v & vm).any()) { if (dup) { for (size_t i = 0; i < sz; ++i) { - tags.push_back(tags[i]); + Tag new_tag = tags[i]; + mask_t new_vals = new_tag.get_values(); + new_vals &= ~ma; // clear whole attr + new_vals ^= vm; // add just the new value + // tags[i].add_values(vm); + new_tag.set_values(new_vals); + tags.push_back(new_tag); } } - dup = true; - for (size_t i = 0; i < sz; ++i) { - tags[i].add_values(vm); + else { + dup = true; + for (size_t i = 0; i < sz; ++i) { + tags[i].add_values(vm); + } } } } -- GitLab