Skip to content

Commit

Permalink
Fix compilation on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthieuHernandez committed Dec 10, 2023
1 parent 3bfc273 commit 63397cc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/neural_network/layer/SimpleLayer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace snn::internal
protected:
[[nodiscard]] std::vector<float> computeBackOutput(std::vector<float>& inputErrors) final;
[[nodiscard]] std::vector<float> computeOutput(const std::vector<float>& inputs, bool temporalReset) final;
virtual void computeTrain(std::vector<float>& inputErrors) final;
void computeTrain(std::vector<float>& inputErrors) final;

public:
SimpleLayer() = default; // use restricted to Boost library only
Expand Down
2 changes: 1 addition & 1 deletion src/tools/Tools.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#pragma once
#include <charconv>
#include <format>
#include <chrono>
#include <iostream>
#include <random>
Expand Down
1 change: 0 additions & 1 deletion tests/unit_tests/SoftmaxTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,4 @@ TEST(Softmax, smallValues)

ASSERT_VECTOR_EQ(values1, expectedValues);
ASSERT_VECTOR_EQ(values2, expectedValues);

}

0 comments on commit 63397cc

Please sign in to comment.