Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

36
votes
9answers
1k 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 ...
23
votes
4answers
482 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 = ...
15
votes
2answers
209 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
8answers
2k views

Why does backtracking make an algorithm non-deterministic?

So I've had at least two professors mention that backtracking makes an algorithm non-deterministic without giving too much explanation into why that is. I think I understand how this happens, but I ...
13
votes
1answer
289 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 ...
9
votes
6answers
794 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 ...
5
votes
2answers
471 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 ...
4
votes
1answer
137 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
214 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 ...
4
votes
2answers
405 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 ...
4
votes
2answers
444 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 ...
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 ...
4
votes
5answers
3k views

Alter SQL Function Referenced by Computed Column

If you set up a table's column to be a computed column whose Formula calls a Function, it becomes a pain to change that underlying Function. With every change, you have to find every single column ...
3
votes
1answer
112 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 ...
3
votes
1answer
103 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 ...
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
65 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. ...
2
votes
2answers
52 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 ...
2
votes
1answer
118 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 ...
2
votes
2answers
289 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
269 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 ...
2
votes
3answers
621 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 ...
1
vote
0answers
34 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 ...
1
vote
1answer
64 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
46 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, ...
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
4answers
402 views

Non-Linux Implementations of boost::random_device

Currently, Boost only implements the random_device class for Linux (maybe *nix) systems. Does anyone know of existing implementations for other OS-es? Ideally, these implementations would be ...
0
votes
0answers
24 views

What languages does this PDA represent? [closed]

reviewing for my final, I think its the numbers of a's and b's must be the same by using c, since in 2 we push a c for every a we see, and in 3 we pop a c for every b we read with a c still on the ...
0
votes
0answers
35 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.
0
votes
1answer
34 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 ...
0
votes
1answer
68 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 ...
0
votes
0answers
130 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 ...
0
votes
6answers
1k 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 ...
-1
votes
1answer
94 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 ...