Skip to content

Commit

Permalink
Slightly better verbiage [CI SKIP]
Browse files Browse the repository at this point in the history
  • Loading branch information
NAThompson committed Feb 7, 2022
1 parent f21aa53 commit 0e1bccb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/representations/analyze.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void analyze(Real x, std::string symbol)
std::cout << "Empirical digit geometric mean of Luroth expansion : " << lur_log.digit_geometric_mean() << "\n";
std::cout << "Expected digit geometric mean if the value is 'random' : 2.200161058\n";

std::cout << "Is it algebraic?\n";
std::cout << "Is " << symbol << " algebraic?\n";
std::string s = is_algebraic(x, symbol, Real(1e10));
if (!s.empty())
{
Expand All @@ -102,7 +102,7 @@ void analyze(Real x, std::string symbol)
std::cout << "It is probably not algebraic.\n";
}

std::cout << "Searching for closed forms.\n";
std::cout << "Searching for closed forms of " << symbol << "\n";
s = identify(x, symbol, Real(1e10));
if (!s.empty())
{
Expand Down

0 comments on commit 0e1bccb

Please sign in to comment.