Skip to content

Commit

Permalink
Correction for compilation.
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuDutSik committed Dec 25, 2023
1 parent 0aeb11a commit 2990c5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src_number/factorizations.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ template <typename T> std::vector<T> Kernel_FactorsInt(T const &N) {
if (epair.first) {
T fact1 = epair.second;
T fact2 = QuoInt(N, fact1);
std::vector<T> ListPrime = FactorsInt(fact1);
std::vector<T> V2 = FactorsInt(fact2);
std::vector<T> ListPrime = Kernel_FactorsInt(fact1);
std::vector<T> V2 = Kernel_FactorsInt(fact2);
ListPrime.insert(ListPrime.end(), V2.begin(), V2.end());
return ListPrime;
} else {
Expand Down

0 comments on commit 2990c5f

Please sign in to comment.