Tagged Questions
5
votes
8answers
152 views
c++ recursion exits without obvious reason
I wrote a function using a recursion. While testing it, it turned out, that the function is killed without any obvious reason, while the recursion is still running.
To test this, I wrote an infinite ...
3
votes
8answers
409 views
Is it possible to construct an “infinite” string?
Is there any real sequence of characters that always compares greater than any other string?
My first thought was that a string constructed like so:
...
0
votes
2answers
84 views
How do I check for infinite (1.#INF) and indefinite (1.#IND) numbers?
template <class T>
MyClass
{
public:
// ...
void MyMethod(T dbNumber)
{
// ...
T dbResult = do_some_operation_on_dbnumber(dbNumber);
...
0
votes
4answers
99 views
Problem with reading from file causing infinite loop
Ok this program I am working on seems to be all ok except there is a problem. Here is the code
#include <iostream>
#include <fstream>
using namespace std;
/*
Function Name: ...
0
votes
3answers
210 views
parallel calculation of infinite series
I just have a quick question, on how to speed up calculations of infinite series.
This is just one of the examples:
arctan(x) = x - x^3/3 + x^5/5 - x^7/7 + ....
Lets say you have some library which ...
0
votes
2answers
308 views
Simple Model Checker Tool
Is there a simple Model Checker tool. I am planning to implement a model checker tool which will analyze the code for some of the predefined properties.
-1
votes
3answers
99 views
Stream makes function run forever [closed]
What kind of stream can cause to function run forever ?
Is such stream exist ?