Inconsistencies with degrees
See original GitHub issueI stumbled over two ways degrees are handled that I’m not happy/comfortable with.
First: A minus sign turns them into radians.
This code
println(-45°);
println((-1) * 45°);
returns
-0.7854
-45°
I think this is a genuine bug and println(-45°);
should actually return -45°
.
Second: Degree mod degree returns radians.
The code
println(mod(456°, 360°));
returns
1.6755
I think this is more okay, but I would still expect to get degrees out of this calculation at first.
Issue Analytics
- State:
- Created a year ago
- Comments:11 (11 by maintainers)
Top Results From Across the Web
Knowledge-Base Degrees of Inconsistency: Complexity and ...
In this paper, we provide a complexity analysis of fixed-domain non-entailment (NE) on Datalog programs for well-established families of ...
Read more >Evaluating Top-k Queries with Inconsistency Degrees
We study the problem of augmenting relational tuples with inconsistency awareness and tackling top-k queries under a set of denial constraints ( ...
Read more >Degrees of Inconsistency - Ladislav Kvasz - PhilPapers
Discontinuity of Cappings in the Recursively Enumerable Degrees and Strongly Nonbranching Degrees.Klaus Ambos-Spies & Ding Decheng - 1994 - Mathematical ...
Read more >10 High-Profile People Whose Degrees Were Revoked
1. Gaming Olympics studies: In April 2012, Pál Schmitt resigned as president of Hungary a week after his doctorate was withdrawn by Semmelweis ......
Read more >A Syntax-based approach to measuring the degree of ...
To address these two issues, we propose a normalized framework for measuring the degree of inconsistency of a belief base which unifies the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Closed via https://github.com/CindyJS/CindyJS/pull/879
FYI: For Cinderella this is fixed in builds >2044.