In programming, non-deterministic means the results are not determined on different runs.

learn more… | top users | synonyms (1)

2
votes
3answers
118 views

How do you use the list monad to compute/represent the outcome of a non-deterministic computation?

I want to structure a computation where the context is the history of all paths leading the present (which forms a tree), and the function is the present state conditional on the past state. The ...
4
votes
1answer
103 views

Why is this opencl code non-deterministic?

The following python code uses PyOpenCL to fill the array a_plus_b with the sum of the elements in array b (this isn't my actual objective, but it's the simplest code I can find that still shows the ...
0
votes
1answer
16 views

Can using a different cpu cause the output of the same program to be different?

Should the same program always output the same result, if it does not use any random numbers or I/O, or is it possible that it will output something different on a different cpu (but same ...
1
vote
0answers
176 views

How to determine if finite automata will accept empty language

In class we are exploring the properties of finite automaton, both deterministic and non-deterministic. We were presented this homework question: a). Let M be a finite automata ...
3
votes
1answer
138 views

Dictionary ordering non-deterministic in python3?

I recently switched from python-2.7 to python-3.3, and it seems that while in python2 the ordering of dictionary keys was arbitrary but consistent, in python3 the ordering of the keys of a dictionary ...
1
vote
0answers
81 views

Time complexity of a Turing machine for repeat strings

I'm trying to figure out the time-complexity of a turing machine that accepts repeat strings (ww) in three cases: a 1-tape deterministic machine, a 2-tape deterministic machine, and 1-tape ...
0
votes
0answers
81 views

Non deterministic algorithm to determine whether two graphs are isomorphic

Is there a paper or article around the web where this problem is detailed? I googled it but all I could find was optimised deterministic algorithms and optimisations for them.
0
votes
2answers
108 views

How to functionally test a genetic algorithm

I have made a genetic algorithm in Java, it's in the form of a library that can be added to several applications. During development I've made some (jUnit) tests that could be functional tests, but ...
0
votes
2answers
125 views

Building a nondeterministic monad transformer in haskell

I would like to build a nondeterministic monad transformer in haskell that, I believe, behaves differently from ListT and from the alternative ListT proposed at ...
2
votes
1answer
145 views

How can I build a nondeterministic state monad in Haskell?

I want to build a nondeterministic state monad in Haskell. This will allow me to generate all the elements in my search space using the built up state to prune bad locations. Suppose I have the ...
0
votes
3answers
74 views

Non-deterministic CSP programming tool? [closed]

Hi i need a non deterministic constraint satisfaction problem tool, because i need different solutions with the same input of the problem. Someone knows about a tool with this characteristic? I only ...
3
votes
1answer
407 views

I do not understand the concept of Non Deterministic Turing Machine [closed]

I do not the understand the concept of Non Deterministic Turing Machine. I guess I understand the term Non deterministic algorithm : (nondeterministic algorithm is an algorithm that can exhibit ...
0
votes
1answer
122 views

Nondeterministic, unamigious Grammar?

According to wikipedias GLR description, they "handle nondeterministic and ambiguous grammars." I can visualize an ambiguous grammar, like the dangling else problem, but what's a nondeterministic CF ...
1
vote
3answers
133 views

Consistency: Dividing an integer by the powers of 2 vs powers of 10?

This is a question concerning cross-platform consistency and determinism of floating point operations (IE yield different results on different CPUs/sysetms) Which one is more likely to stay ...
1
vote
1answer
160 views

Why does java (maven) care about file timestamps during compilation?

I have a project that I have been working on for a few days and I finally got it to compile cleanly. However, a git clone of the same remote branch (on the same machine, compiled in the same terminal ...
4
votes
10answers
465 views

Why is malloc really non-deterministic? (Linux/Unix)

malloc is not guaranteed to return 0'ed memory. The conventional wisdom is not only that, but that the contents of the memory malloc returns are actually non-deterministic, e.g. openssl used them for ...
0
votes
1answer
129 views

Undebuggable non-deterministic heisenbug in single-threaded C++ function call

I'm at the end of my rope here: I have a single-threaded C++ program. Here is some empirical data and background information, I tried to highlight the most important keywords; The entire section I'm ...
3
votes
4answers
199 views

Can precision of floating point numbers in Javascript be a source of non determinism?

Can the same mathematical operation return different results in different architectures or browsers ?
2
votes
1answer
163 views

Two inputs on self loop, deterministic or non-deterministic state machine?

Wikipedia states that a Deterministic State Automation "produces a unique computation (or run) of the automaton for each input string". I always understood this as there being only 1 possible path ...
0
votes
1answer
474 views

XML Schema content model is not deterministic

i have trouble with a xml schema. First I want to schow yout the possible cases of xml: 1. <arrivalDate>01.01.2012</arrivalDate> 2. <arrivalDate>01.01.2012</arrivalDate> ...
4
votes
2answers
211 views

How to cleanly convert between lists and ListT monad transformers?

I am currently writing a project where I make a heavy use of ListT monad transformer. When using plain lists, implementing nondeterminism is very easy. However once I had to convert my code to ListT, ...
1
vote
0answers
148 views

ANTLR - non-deterministic behaviour during run/debug

I'm trying to use ANTLR (tried 3.3 and 3.4). Strange thing happens when I try to run my test code. Please see my very simple code first, I'll explain my problem afterwards. Test grammar: lexer ...
15
votes
2answers
497 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
3
votes
1answer
325 views

An attempt at non-deterministic finite state machine (C++), is a static std::map a good idea?

I need to implement a non-deterministic FSM, so I came up with the idea of defining an FSM class that holds states and transitions (that may or may not depend on the states of other FSMs, but must ...
2
votes
2answers
290 views

Context sensitive language with non deterministic turing machine

how can i show a language is context sensitive with a non deterministic turing machine? i know that a language that is accepted by a Linear bound automaton (LBA ) is a context -sensitive language. ...
0
votes
0answers
61 views

Is it possible to construct a Turing Machine which finds all members of each language in NP?

If it is possible to construct such a machine, how would this work? I'm not too sure this can exist because of the infinite number of machines in NP.
1
vote
1answer
250 views

Click does not always work in Selenium

I use Selenium with PHPUnit, and sometimes test fail with an error condition which seems to be caused by the browser ignoring clickAndWait calls. The test execution passes the clickAndWait command ...
1
vote
1answer
113 views

nondeterministic finite automation question

Im doing some studying and im a bit confused on this little nondeterministic algorithm when it processes a 1. I understand that it will split into a brand with q1 since a 0 or 1 will redirect back, ...
2
votes
2answers
112 views

Mercury: How to declare determinism of a higher-order data type?

When I compile the Mercury code below, I get this error from the compiler: In clause for `main(di, uo)': in argument 1 of call to predicate `test_with_anonymous_functions.assert_equals'/5: mode ...
-1
votes
1answer
319 views

Nondeterministic Algorithms [closed]

I need a simple description of nondeterministic algorithms . Can we comapre nondeterministic algorithm with computer with parrallel processor? please someone exactly explain me about nondeterministic ...
23
votes
4answers
629 views

Erroneous for-loops in Java?

I observed erroneous behaviour running the following java-code: public class Prototype { public static void main(String[] args) { final int start = Integer.MAX_VALUE/2; final int end = ...
0
votes
1answer
73 views

How to audit user supplied class files to blacklist packages, classes, and methods

I am working on an application that hosts user defined stored procedures that are provided as Java class files. The procedures need to be deterministic, and I want to black list various packages and ...
3
votes
1answer
287 views

CUDA debugging procedure for non-deterministic output

I'm debugging my CUDA 4.0/Thrust-based image reconstruction code on my Ubuntu 10.10 64-bit system and I've been trying to figure out how to debug this run-time error I have in which my output images ...
4
votes
1answer
275 views

Perl: Are Special Variables Thread Safe?

I was reading some questions regarding the $@ global variable and how it can be clobbered before it's even handled due to successful evals wiping it clean. But what if it gets clobbered by an error ...
4
votes
2answers
290 views

Fair concurrent `map` function in haskell?

Say I am simulating a network of some sort, and have a function which broadcasts a value over a list of Chans: broadcast :: a -> [Receiver] -> IO () broadcast a = mapM_ (send a) This will ...
3
votes
1answer
253 views

`amb` operator as macro or procedure?

In this page there is a comment after the post that gives a very short implementation of amb as a procedure: (define (amb-backtrack) (error "no solution found")) (define (amb . args) (call/cc ...
0
votes
1answer
104 views

SQL: What is the best way to display (near) realtime site activity over a time interval? i.e. “Messages sent in the last hour”

The goal is to update the UI as frequently as possible but performance is a concern and hits to the database should be minimised. I used Indexed Views to keep up to date stats on items that were not ...
14
votes
1answer
362 views

Why is the non-deterministic choice function in Curry's std lib not defined straightforwardly but rather with a helper 2-argument function?

Consider a function choose in Curry programming language with the specification that "(choose xs) non-deterministically chooses one element from the list xs". I'd implement it straighforwardly ...
2
votes
2answers
221 views

Example of deterministic bug

Can someone gives me an example of deterministic bug in a program? Thanks.
2
votes
2answers
687 views

How do disk controllers handle concurrent writes to same sector in absence of write barriers?

When I open a file with O_DIRECT|O_ASYNC and do two concurrent writes to the same disk sector, without a fsync or fdatasync in between, does the linux disk subsystem or the Hardware disk controllers ...
2
votes
6answers
624 views

Can a multi-threaded program ever be deterministic?

Normally it is said that multi threaded programs are non-deterministic, meaning that if it crashes it will be next to impossible to recreate the error that caused the condition. One doesn't ever ...
1
vote
2answers
169 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 ...
0
votes
0answers
222 views

How can DIR* get EBADF error?

I have some code that I have inherited which is part of a class for iterating, accessing the directory content and uses boost::filesystem::path. The code reads in part: struct ...
5
votes
2answers
2k views

Sql Server deterministic user-defined function

I have the following user-defined function: create function [dbo].[FullNameLastFirst] ( @IsPerson bit, @LastName nvarchar(100), @FirstName nvarchar(100) ) returns nvarchar(201) as begin ...
5
votes
2answers
2k views

Creating Nondeterministic functions in SQL Server using RAND()

After a bit of searching and reading the documentation, it's clear that you can write user defined functions in SQL Server that are marked as either deterministic or nondeterministic depending on ...
12
votes
6answers
2k views

Non-deterministic programming languages

I know in Prolog you can do something like someFunction(List) :- someOtherFunction(X, List) doSomethingWith(X) % and so on This will not iterate over every element in List; instead, it ...
0
votes
5answers
3k views

segmentation fault when using pthreads , in a nondeterministic manner

The problem is that when I run the code below, on a single core, sometimes it runs correctly,and sometimes I get segmentation fault. Probably this problem will occure more frequently on a multi-core ...
4
votes
2answers
570 views

Non-determinstic choice with amb-operator

Is it possible to implement McCarthy's amb-operator for non-deterministic choice in C#? Apparently .NET lacks continuation support but yield return could be useful. Would this be possible in other ...
42
votes
10answers
2k views

How should I Test a Genetic Algorithm

I have made a quite few genetic algorithms; they work (they find a reasonable solution quickly). But I have now discovered TDD. Is there a way to write a genetic algorithm (which relies heavily on ...
6
votes
4answers
3k 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 ...

1 2