Skip to content

Commit

Permalink
[publish] Add timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
TLCFEM committed Sep 21, 2024
1 parent fa7399f commit 018ea25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/VPMR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ std::tuple<cx_vec, cx_vec> vpmr() {

int print_helper() {
std::cout << "--> \xF0\x9F\xA5\xB7 VPMR C++ Implementation <--\n\n";
std::cout << "Compiled on: " << __DATE__ << "\n\n";
std::cout << "Usage: vpmr [options]\n\n";
std::cout << "Options:\n\n";
std::cout << " -n, --max-terms <int> number of terms (default: 10)\n";
Expand All @@ -284,7 +285,7 @@ int print_helper() {
std::cout << " -k, --kernel <string> file name of kernel function (default uses: exp(-t^2/4))\n";
std::cout << " -s, --singular-values print singular values\n";
std::cout << " -w, --weights print weights\n";
std::cout << " -h, --help print this help message\n";
std::cout << " -h, --help print this help message\n\n";
return 0;
}

Expand Down

0 comments on commit 018ea25

Please sign in to comment.