Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
12answers
814 views

What does deterministic mean?

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 ...
15
votes
2answers
206 views

Why is concurrent haskell non deterministic while parallel haskell primitives (par and pseq) deterministic?

Don't quite understand determinism in the context of concurrency and parallelism in Haskell. Some examples would be helpful. Thanks
15
votes
23answers
898 views

C (or any) compilers deterministic performance

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 ...
10
votes
2answers
143 views

Why does a query execute so much faster when I (manually) cache the results of a table-valued function in a temporary table?

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" ...
10
votes
2answers
271 views

Deterministic floating point and .NET

How can I guarantee that floating point calculations in a .NET application (say in C#) always produce the same bit-exact result? Especially when using different versions of .NET and running on ...
9
votes
12answers
4k views

Mapping two integers to one, in a unique and deterministic way

Imagine two positive integers A and B. I want to combine these two into a single integer C. There can be no other integers D and E which combine to C. So combining them with the addition operator ...
8
votes
7answers
860 views

What is a Deterministic Quicksort?

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 ...
8
votes
8answers
1k views

What deterministic garbage collection algorithms are out there?

What deterministic garbage collection algorithms are out there? By deterministic I vaguely mean that can be used in critical real-time software like aerospace flight software. Garbage collectors ...
7
votes
4answers
144 views

Property determinism

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 property ...
6
votes
6answers
181 views

How can floating point calculations be made deterministic?

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 ...
6
votes
12answers
400 views

Sources of non-determinism

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 because it ...
6
votes
5answers
2k views

SQL Server: Floor a date in SQL server, but stay deterministic

(This is related to Floor a date in SQL server.) Does a deterministic expression exist to floor a DATETIME? When I use this as a computed column formula: DATEADD(dd, DATEDIFF(dd, 0, ...
5
votes
4answers
136 views

Is there a PL/SQL pragma similar to DETERMINISTIC, but for the scope of one single SQL SELECT?

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 ...
5
votes
4answers
208 views

Is Clang more deterministic than GCC across platforms?

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 to ...
5
votes
7answers
413 views

Java's Representation of Serialized Objects

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 ...
4
votes
3answers
248 views

Is the order of static class initialization in C# deterministic?

I've done some searching and I think the following code is guaranteed to produce output: B.X = 7 B.X = 0 A.X = 1 A = 1, B = 0 static class B { public static int X = 7; static B() { ...
4
votes
2answers
189 views

Why is [date] + ([time] - [offset]) non-deterministic in SQL Server 2008?

I'm trying to do the following for my IIS logs table: ALTER TABLE [W3CLog] ADD [LogTime] AS [date] + ([time] - '1900-01-01') PERSISTED However, SQL Server 2008 tells me: Computed column 'LogTime' ...
4
votes
4answers
2k views

In C++ and C# are multiple condition checks performed in a predetermined or random sequence?

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 ...
3
votes
3answers
58 views

How can I produce a pseudorandom pattern from X/Y coordinates deterministically?

I'm writing a shader which occasionally makes a point sparkle on a 2D map. (The "sparkle" is simply a brighter-colored pixel.) I'd like the sparkled blocks to appear randomly and uniformly distributed ...
3
votes
2answers
70 views

T-SQL Deterministic INT Cast

Given: SQL Server Table called TEST_TABLE Column in TEST_TABLE called TEST_FIELD of type VARCHAR(50) NOT NULL Row 1: 10YR3/6 Row 2: 10YR3/2 Query: SELECT TEST_FIELD FROM TEST_TABLE WHERE ... ...
3
votes
1answer
56 views

Code for member/2 with some Determinism

How can I code member/2 that has determinism for the last element. Currently I am using: member(X,[X|_]). member(X,[_|Y]) :- member(X,Y). When I query the following: ?- member(X,[1,2]). X = 1 ; X ...
3
votes
4answers
71 views

Compiler Optimization of Deterministic Functions

I was reading about Deterministic Execution, which is that for the same input, you have the same output. I was wondering whether any compiler writer has thought about optimizing deterministic ...
3
votes
4answers
723 views

QueryPerformanceCounter and overflows

I'm using QueryPerformanceCounter to do some timing in my application. However, after running it for a few days the application seems to stop functioning properly. If I simply restart the application ...
3
votes
4answers
365 views

Is there any way to make this UDF deterministic?

I assume this is not deterministic simply because DB_NAME() is not deterministic? If DB_NAME() is not deterministic, why is it not deterministic? ALTER FUNCTION [TheSchema].[udf_IS_PRODUCTION] () ...
3
votes
3answers
2k views

What does it mean by “Non-deterministic User-Defined functions can be used in a deterministic manner”?

According to MSDN SQL BOL (Books Online) page on Deterministic and Nondeterministic Functions, non-deterministic functions can be used "in a deterministic manner" The following functions are not ...
2
votes
2answers
130 views

Deterministic function in mysql

I got confused with a seemingly simple concept. Mysql defines deterministic function as a function that always produces the same result for the same input parameters So in my understanding, ...
2
votes
3answers
158 views

Why does a deterministic algorithm in Java run at different times?

I have a Java program that calculates an n-body problem. At every iteration it checks the forces each body exerts on every other body, and then moves them according to the forces. The bodies always ...
2
votes
3answers
598 views

Deterministic RSA encryption in Java

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 ...
2
votes
2answers
125 views

Split a string based on each time a Deterministic Finite Automata reaches a final state?

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 ...
2
votes
2answers
95 views

If a language (L) is recognized by an n-state NFA, can it also be recognized by a DFA with no more than 2^n states?

I'm thinking so, because the upper bound would be the 2^n, and given that these are both finite machines, the intersection for both the n-state NFA and the DFA with 2^n or less states will be valid. ...
2
votes
2answers
127 views

Avoiding Determinism with Markovian Logic

I just began reading more about Markov Chain Generators today, and am really intrigued by the whole process of building one. From my understanding, the future state is dependent upon the statistical ...
2
votes
2answers
779 views

What could cause a deterministic process to generate floating point errors

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 ...
2
votes
3answers
620 views

Why does SQL 2005 say this UDF is non-deterministic?

I have the following function: SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER FUNCTION [dbo].[IP4toBIGINT]( @ip4 varchar(15) ) RETURNS bigint WITH SCHEMABINDING AS BEGIN -- oc3 ...
2
votes
2answers
1k views

How to make conversions from varchar to datetime deterministic?

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 ...
2
votes
1answer
850 views

User-Defined Functions SQL Server 2005 flagged incorrectly as non-deterministic?

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 ...
1
vote
1answer
27 views

NSNotification observed in super class and handled in super and child class

I have class ParentClass that observes an NSNotification. ParentClass handles the notification. ChildClass inherits ParentClass and also handles the notification. Is the order in which the ...
1
vote
0answers
65 views

Making simulation deterministic (simulator based on qemu)

I am using Marss cycle-accurate simulator, which uses QEMU. It is a full system simulator and gives both user and kernel stats. However, even if I take only user-stats, the statistics vary a lot ...
1
vote
1answer
91 views

Need help constructing a deterministic finite automata?

What are the rules for constructing a deterministic finite automata in the form of a diagram? My professor explained by examples, but I am not exactly sure what rules must be followed by all diagrams. ...
1
vote
3answers
138 views

Give state diagrams of DFAs recognizing the following languages. In all parts the alphabet is {0,1 }

Im trying to get the hang of drawing DFAs. I have the following problem to do with my following attempt, was wondering if anyone could tell me if im correct, or if incorrect what im doing wrong. ...
1
vote
4answers
109 views

Deviation in a deterministic application

I am currently working on a (legacy) programme that has been written in C++ and C#; it executes some heavyweight calculations but should be completly deterministic. i.e. the same inputs will yeild the ...
1
vote
3answers
381 views

Oracle execution plans when using the LIKE operator with a DETERMINISTIC function

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 ...
1
vote
2answers
106 views

Example of deterministic bug

Can someone gives me an example of deterministic bug in a program? Thanks.
1
vote
2answers
132 views

Floating point comparison - Result between different runs

I know that I can not compare two floating point or double numbers for absolute equality on C++/C. If for some reason, I write a if condition which uses the absolute equality, is it guaranteed that ...
1
vote
6answers
87 views

Can UB cause several single-threaded app runs to produce different outputs?

Is it possible for code that meets the following conditions to produce different outputs for each run for the same input? The code is single threaded, though it does link against a thread-safe ...
1
vote
2answers
114 views

If sorting records by a number in the record, but some records have the same number, the order is not gauranteed but shouldn't be random?

Let's say if we are sorting some records by a number in record: Name Number_of_Language_Known John 3 Mary 2 Peter 3 Mike 1 ... If we are not also sorting by Name, then the order of John and ...
1
vote
2answers
199 views

How can I check if a sql query is deterministic?

What I mean by deterministic is that the query will always return exactly the same result set. Is there a way to do this?
1
vote
0answers
64 views

Deterministic initialization and dependency injection (constructor based)

My demo application I'm working on has a very long startup routine. The application I'm trying to replace with the new ideas log a lot to the console during that (imagine: "now loading data... ...
0
votes
1answer
41 views

Reducing non-determinism with Detours?

I was wondering if it is possible to use hooking (like Detours) to remove non-determinism in an arbitrary application. We can assume single-thread applications (to ignore non-determinism caused by ...
0
votes
2answers
78 views

What is the language of this deterministic finite automata?

Given: I have no idea what the accepted language is. From looking at it you can get several end results: 1.) bb 2.) ab(a,b) 3.) bbab(a, b) 4.) bbaaa
0
votes
1answer
93 views

Is event recording on time-sensitive possible?

Basic Question Is there any way to event recording an playback within a time-sensitive (framerate independent) system? Any help - including a simple "No sorry it is impossible" - would be greatly ...

1 2