deterministic Questions
2
Solved
Having already read this question I'm reasonably certain that a given process using floating point arithmatic with the same input (on the same hardware, compiled with the same compiler) should be d...
Thracophrygian asked 9/6, 2009 at 6:17
5
I'm considering the feasibility of programming a multi-user RTS game (partly) in C++. What I quickly discovered, is that one hard requirement is that the game simulation must be fully deterministic...
Ambassador asked 10/7, 2011 at 11:29
1
I am developing a C application which needs floating-point determinism. I would also like the floating-point operations to be fairly fast. This includes standard transcendental functions not specif...
Girl asked 10/2, 2012 at 23:0
2
Solved
Don't quite understand determinism in the context of concurrency and parallelism in Haskell. Some examples would be helpful.
Thanks
Secundines asked 20/12, 2011 at 22:4
6
Solved
Floating point calculation is neither associative nor distributive on processors. So,
(a + b) + c is not equal to a + (b + c)
and a * (b + c) is not equal to a * b + a * c
Is there any way to pe...
Flabby asked 9/9, 2011 at 18:16
4
Solved
In a SQL SELECT statement, I'd like to execute a function that is deterministic for the scope of that SELECT statement (or transaction would be ok, too):
select t.x, t.y, my_function(t.x) from t
...
Inviolable asked 1/9, 2011 at 12:44
2
Why is Query Version 2 so much faster?
I suspect the DB Engine is calling the Table-Valued-Function "GetUsageStatistic" multiple times, so is there a way to tell the engine that "GetUsageStatistic...
Menorah asked 2/6, 2011 at 21:39
3
Solved
This is my first question on this site, and I only have a basic mathematical understanding of RSA, so please bear with me! :)
I'm writing a Java web application for my final year project at univer...
Bobbe asked 30/3, 2011 at 15:23
3
Solved
Now I have a really tricky thing with Oracle execution plans running havoc, when I use a DETERMINISTIC function on the right hand side of the LIKE operator. This is my situation:
The Situation
I ...
Tony asked 17/3, 2011 at 14:52
2
Solved
I have a problem which has an solution that can be solved by iteration, but I'm wondering if there's a more elegant solution using regular expressions and split()
I have a string (which excel is p...
Puff asked 16/12, 2010 at 15:5
4
Solved
Is there any way in C# to mark a property as deterministic?
The reason I ask is that I often find myself declaring a local variable and reading a property into it, instead of accessing the propert...
Muldon asked 15/9, 2010 at 8:49
12
Solved
My supposedly deterministic program produces one of a few slightly different outputs on different runs. The input, compiler and computer are unchanging. I'm not sure which output is right bec...
Mescal asked 31/8, 2010 at 13:29
11
Solved
I am reading the Java Hashmap documentation but I don't understand this sentence.
Note that the iteration order for
HashMap is non-deterministic. If you
want deterministic iteration, use
Lin...
Microcurie asked 25/8, 2010 at 21:35
7
Solved
I have been reading about Quicksort and found that sometimes it' s referred to as "Deterministic Quicksort".
Is this an alternate version of the normal Quicksort ? What is the difference between a...
Waldowaldon asked 22/2, 2010 at 20:30
22
Solved
Whilst working on a recent project, I was visited by a customer QA representitive, who asked me a question that I hadn't really considered before:
How do you know that the compiler you are using...
Crutcher asked 13/9, 2008 at 13:47
7
Solved
I'm looking for the format that Java uses to serialize objects. The default serialization serializes the object in a binary format. In particular, I'm curious to know if two runs of a program can s...
Exertion asked 30/9, 2009 at 23:26
4
Situation: condition check in C++ or C# with many criteria:
if (condition1 && condition2 && condition3)
{
// Do something
}
I've always believed the sequence in which these chec...
Nighthawk asked 7/5, 2009 at 21:51
2
Solved
In the tradition of this question and in light of the documentation, how does one make this function deterministic:
ALTER FUNCTION [udf_DateTimeFromDataDtID]
(
@DATA_DT_ID int -- In form YYYYMMDD...
Mosra asked 21/11, 2008 at 20:31
1
Solved
Related to this question, I decided to check the UDFs in my data warehouse (which should largely have been deterministic), and I found several which aren't which should be.
For instance:
CREATE F...
Scenic asked 21/11, 2008 at 17:6
© 2022 - 2024 — McMap. All rights reserved.