diff options
author | thegeorg <thegeorg@yandex-team.ru> | 2022-02-10 16:45:12 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:12 +0300 |
commit | 49116032d905455a7b1c994e4a696afc885c1e71 (patch) | |
tree | be835aa92c6248212e705f25388ebafcf84bc7a1 /contrib/libs/hyperscan/src/rose/rose_build_add.cpp | |
parent | 4e839db24a3bbc9f1c610c43d6faaaa99824dcca (diff) | |
download | ydb-49116032d905455a7b1c994e4a696afc885c1e71.tar.gz |
Restoring authorship annotation for <thegeorg@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/hyperscan/src/rose/rose_build_add.cpp')
-rw-r--r-- | contrib/libs/hyperscan/src/rose/rose_build_add.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/contrib/libs/hyperscan/src/rose/rose_build_add.cpp b/contrib/libs/hyperscan/src/rose/rose_build_add.cpp index ee748c6a8b..4929c95fce 100644 --- a/contrib/libs/hyperscan/src/rose/rose_build_add.cpp +++ b/contrib/libs/hyperscan/src/rose/rose_build_add.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015-2018, Intel Corporation + * Copyright (c) 2015-2018, Intel Corporation * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -453,7 +453,7 @@ RoseVertex tryForAnchoredVertex(RoseBuildImpl *tbi, <= tbi->cc.grey.maxAnchoredRegion) { if (ep.maxBound || ep.minBound) { /* TODO: handle, however these cases are not generated currently by - ng_violet */ + ng_violet */ return RoseGraph::null_vertex(); } max_width = depth(ep.maxBound + iv_info.s.length()); @@ -567,7 +567,7 @@ void doRoseLiteralVertex(RoseBuildImpl *tbi, bool use_eod_table, assert(iv_info.type == RIV_LITERAL); assert(!parents.empty()); /* start vertices should not be here */ - // ng_violet should have ensured that mixed-sensitivity literals are no + // ng_violet should have ensured that mixed-sensitivity literals are no // longer than the benefits max width. assert(iv_info.s.length() <= MAX_MASK2_WIDTH || !mixed_sensitivity(iv_info.s)); @@ -1851,10 +1851,10 @@ bool RoseBuildImpl::addChainTail(const raw_puff &rp, u32 *queue_out, static bool prepAcceptForAddAnchoredNFA(RoseBuildImpl &tbi, const NGHolder &w, - NFAVertex u, + NFAVertex u, const vector<DepthMinMax> &vertexDepths, map<u32, DepthMinMax> &depthMap, - map<NFAVertex, set<u32>> &reportMap, + map<NFAVertex, set<u32>> &reportMap, map<ReportID, u32> &allocated_reports, flat_set<u32> &added_lit_ids) { const depth max_anchored_depth(tbi.cc.grey.maxAnchoredRegion); @@ -1882,9 +1882,9 @@ bool prepAcceptForAddAnchoredNFA(RoseBuildImpl &tbi, const NGHolder &w, depthMap[lit_id] = unionDepthMinMax(depthMap[lit_id], d); } - if (depthMap[lit_id].max > max_anchored_depth) { + if (depthMap[lit_id].max > max_anchored_depth) { DEBUG_PRINTF("depth=%s exceeds maxAnchoredRegion=%u\n", - depthMap[lit_id].max.str().c_str(), + depthMap[lit_id].max.str().c_str(), tbi.cc.grey.maxAnchoredRegion); return false; } @@ -1931,7 +1931,7 @@ bool RoseBuildImpl::addAnchoredAcyclic(const NGHolder &h) { flat_set<u32> added_lit_ids; /* literal ids added for this NFA */ for (auto v : inv_adjacent_vertices_range(h.accept, h)) { - if (!prepAcceptForAddAnchoredNFA(*this, h, v, vertexDepths, depthMap, + if (!prepAcceptForAddAnchoredNFA(*this, h, v, vertexDepths, depthMap, reportMap, allocated_reports, added_lit_ids)) { removeAddedLiterals(*this, added_lit_ids); @@ -1945,7 +1945,7 @@ bool RoseBuildImpl::addAnchoredAcyclic(const NGHolder &h) { if (v == h.accept) { continue; } - if (!prepAcceptForAddAnchoredNFA(*this, h, v, vertexDepths, depthMap, + if (!prepAcceptForAddAnchoredNFA(*this, h, v, vertexDepths, depthMap, reportMap, allocated_reports_eod, added_lit_ids)) { removeAddedLiterals(*this, added_lit_ids); |