Skip to content

Commit

Permalink
コメント修正
Browse files Browse the repository at this point in the history
  • Loading branch information
potato167 committed Sep 5, 2024
1 parent 2ae0784 commit 5169250
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions fps/FPS_differetial.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include <vector>

namespace po167{
// return f'
template <class T>
std::vector<T> FPS_differential(std::vector<T> f){
if (f.empty()) return f;
Expand Down
2 changes: 1 addition & 1 deletion fps/Multipoint_Evaluation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#include "FPS_division.hpp"

namespace po167{
template <class T>
// return {f(p[0]), f(p[1]), f(p[2]), ... }
template <class T>
std::vector<T> Multipoint_Evaluation(
std::vector<T> f,
std::vector<T> p
Expand Down
2 changes: 1 addition & 1 deletion fps/Multipoint_Evaluation_Geo.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "FPS_cyclic_convolution.hpp"
namespace po167{
template <class T>
// return {f(ar^0), f(ar^1), f(ar^2), ... f(ar^{len - 1})}
template <class T>
std::vector<T> Multipoint_Evaluation_Geo(
std::vector<T> f,
T a, T r, int len = -1
Expand Down

0 comments on commit 5169250

Please sign in to comment.