Skip to content

Commit

Permalink
Issue #815 Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Stepaniuk authored and Alexander Stepaniuk committed Sep 15, 2022
1 parent 5eac32b commit c99b2f5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions api/c/indigo/src/indigo_deconvolution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
* limitations under the License.
***************************************************************************/

#include <algorithm>
#include <algorithm>

#include "indigo_deconvolution.h"
#include "base_cpp/array.h"
#include "base_cpp/obj_array.h"
#include "base_cpp/obj_list.h"
#include "base_cpp/red_black.h"
#include "base_cpp/tlscont.h"
#include "graph/automorphism_search.h"
#include "indigo_array.h"
#include "indigo_deconvolution.h"
#include "indigo_molecule.h"
#include "molecule/elements.h"
#include "molecule/max_common_submolecule.h"
Expand Down Expand Up @@ -695,7 +695,7 @@ void IndigoDecompositionMatch::removeRsitesFromMaps(Graph& query_graph)
void IndigoDecompositionMatch::copyScafAutoMaps(const std::vector<Array<int>>& autoMaps)
{
scafAutoMaps.clear();
for (const auto& src: autoMaps)
for (const auto& src : autoMaps)
{
scafAutoMaps.emplace_back();
scafAutoMaps.back().copy(src);
Expand Down Expand Up @@ -1344,7 +1344,7 @@ void IndigoDeconvolution::DecompositionEnumerator::addMatch(IndigoDecompositionM
{
direct_order.push(pair.first);
}
for (const Array<int>& auto_map: _autoMaps)
for (const Array<int>& auto_map : _autoMaps)
{
/*
* Check for correctness and condition
Expand Down Expand Up @@ -1522,7 +1522,7 @@ void IndigoDeconvolution::DecompositionEnumerator::_refineAutoMaps(std::vector<A
auto_maps.clear();

int start = 0;
for (int idx: indices_to_remove)
for (int idx : indices_to_remove)
{
const auto startIt = tmp_maps.begin() + start;
const auto endIt = tmp_maps.begin() + idx;
Expand Down

0 comments on commit c99b2f5

Please sign in to comment.