In theoretical computer science, correctness of an algorithm is asserted when it is said that the algorithm is correct with respect to a specification.

learn more… | top users | synonyms

1
vote
1answer
55 views

Coin change but with only 1 of each denomination of coin

The problem is: The algorithm I came up with is something like: pair<bool, bitmask>[n][A] memo; // memo[i][j].first will be true if its possible to // use up to i-th denomination for ...
-1
votes
0answers
84 views

Recursive sorting algorithm correctness [closed]

Considering that to prove a recursive algorithm we should refer to mathematical induction. Given the following algorithm (which sort an Array of size r) I found that base cases are for array size of 0 ...
6
votes
4answers
91 views

if (foo or bar or baz) is None:

I've been refactoring some rather crufty code and came across the following rather odd construct: #!/usr/bin/env python2.7 # ... if (opts.foo or opts.bar or opts.baz) is None: # (actual option ...
0
votes
1answer
54 views

Java Arrays: how to ensure the semantic correctness of indexes used?

I have the following situation: final int I = 10; final int MU = 100; final int P = 100; int[][] a = new int[I][MU]; int[][] b = new int[I][P]; for(int i = 0; i < I; i++) { for(int mu = 0; ...
0
votes
5answers
47 views

Preferred method of updating and setting SQL

I'm learning SQL at the moment, and have found some different methods of updating and setting a table. For this example, I am wondering what is the "most correct way" of doing this? UPDATE ...
2
votes
1answer
57 views

How can I prove the correctness of the following algorithm?

Consider the following algorithm min which takes lists x,y as parameters and returns the zth smallest element in union of x and y. Pre conditions: X and Y are sorted lists of ints in increasing order ...
0
votes
0answers
40 views

how to prove the correctness of recursive algorithm?

private static void swap(char[] str, int i, int j){ char tmp = str[i]; str[i] = str[j]; str[j] = tmp; } public static void permute(String str){ permute(str.toCharArray(), 0, ...
-1
votes
2answers
77 views

Should all javascript be put inside a load() on body event?

Should I put all this inside a load() body event so that it loads after the page has rendered and the DOM objects have been created? (I did find I had to use .innerhtml rather than .value for it to ...
1
vote
2answers
68 views

Setters and getters that act like lists/tuples

I have a project that uses Numpy. One of the classes needs a set of matrices called weights. For several reasons, it's best if I store all these matrix values as one long vector, and let each separate ...
0
votes
2answers
33 views

Determining Plusequals Operator Syntax

I'm fairly new to c++ and am trying to learn about custom operators. The problem I'm having currently is in relation to defining my own += operator and the best way to go about it. This involves a ...
0
votes
0answers
60 views

Valgrind-like tool to check Endian-correctness of C code?

Is there a Valgrind-like (dynamic) or Lint-like (static) tool out there that can check Endian-correctness of an arbitrary C code base? The code base can be compiled on various compilers on various ...
2
votes
2answers
72 views

How do i prove that my derived equation and the Monte-Carlo simulation are equivalent?

I have derived and implemented an equation of an expected value. To show that my code is free of errors i have employed the Monte-Carlo computation a number of times to show that it converges into ...
0
votes
6answers
114 views

Arguing my algorithm is correct and within the bounds

I'm working on some algorithms assignments and was asked the following: sort an array in O(n) with elements 'r' or 'w' in place so the 'r's always precede the 'w's. So if the input looks like ...
0
votes
1answer
241 views

VBScript verifying code correctness without executing

Do you have an idea how can one vbs file verify the correctness of another vbs file but without executing it? By "verify correctness" I mean that this second file can be compiled without getting an ...
-1
votes
1answer
301 views

Using PHP MVC with OOP correctly

I've been reading and learning about OOP and MVC for the last week or so I would like to know if I'm on the right track. Here is an example of what I currently have: index.php Parses the URL that is ...
1
vote
0answers
132 views

Has Comb Sort been proven correct? Can it be?

I've been doing some research on Comb Sort and I'm trying to figure out whether the algorithm has been proven correct. However, I can't seem to find a great deal of documentation on the algorithm. ...
1
vote
0answers
39 views

Javascript prototyping and code corectness [closed]

I'm trying to write a javascript lib, but I can't totally get prototyping in my mind. I wrote some code and it works, but is correct? Am I moving in right way? Is there any other way to autoload ...
3
votes
2answers
798 views

When is the use of std::ref necessary?

Consider: std::tuple<int , const A&> func (const A& a) { return std::make_tuple( 0 , std::ref(a) ); } Is the std::ref required for writing correct and portable code? (It compiles ...
0
votes
0answers
135 views

Is it bad programming to have a Javascript function with innerhtml element call that function? [closed]

I have a form element that is added when a button is clicked. In particular, when the button is clicked, the function addTarget() is called which adds a Target. However, I want the option to duplicate ...
2
votes
1answer
95 views

Proving correctness in formal logic

I was wondering if anyone could help me answer this question. It is from a previous exam paper and I could do with knowing the answer ready for this years exam. This question seems so simple that I ...
3
votes
4answers
214 views

How do people prove the correctness of Computer Vision methods?

I'd like to pose a few abstract questions about computer vision research. I haven't quite been able to answer these questions by searching the web and reading papers. How does someone know whether a ...
1
vote
1answer
44 views

Verification: combining correctness statements

The question is: P1 {C} Q1 ------------------------- P1 && P2 {C} Q1||Q2 Is this rule valid? How would I go about tackling something like this? All I can think of is to try to ...
1
vote
2answers
273 views

Flawed random number generator?

I used this weighted random number generator. import random def weighted_choice(weights): totals = [] running_total = 0 for w in weights: running_total += w ...
0
votes
1answer
87 views

UITableView…the correct way

I'm trying to make a UITableView like the native calendar app: but I'm trying to learn the best way to do this. I'm able to get this for the most part with a switch statement in the ...
3
votes
5answers
151 views

How much work in the Dispose method?

How much work should be done in a Dispose method? In constructors I've always taken the stance that you should only do what is absolutely necessary to instantiate the object. This being the case I've ...
0
votes
3answers
2k views

How do I use System.Net.ConnectStream?

I am trying to get my head around some of my predecessors code who, helpfully, has used 'var' to declare everything. I have a using statement which is below: using (var postStream = ...
2
votes
3answers
124 views

Guaranteed way to correctly get the contents of www.bing.com/

I have been working on a program that gets the contents of www.bing.com and saves it to a file, but out of the two ways I have tried one using sockets, and the other using HtmlUnit neither shows the ...
7
votes
4answers
636 views

No-throw VirtualMachineError guarantees

I've come to Java from C++. In the C++ world we pay attention to exception safety, and note that mutators can provide different guarantees in the face of exceptions thrown by the mutator itself or a ...
1
vote
6answers
735 views

What is the meaning of this Python statement?

More specifically, I'm not sure what the "%" and "\" symbols coming right after each other are supposed to mean: return 'guitar { id: %d, relevant_properties: (%.02f, %.02f, %.02f), ...
13
votes
5answers
838 views

Showing two different fibonacci functions are equivalent

I'm trying to learn exactly what it means to prove a program correct. I'm starting from scratch and getting hung up on the first steps/the introduction to the topic. In this paper on total functional ...
1
vote
1answer
60 views

HTTP server correctness testing

I've written a simple HTTP server, and I've stumbled upon a few bugs so far that proved difficult to track down. For example, not adding a blank line between headers and content of a response, or ...
0
votes
1answer
361 views

Posting multiple objects with Ruby/Rails (Badly formed JSON?)

This is more of an "am i doing this right question". Basically I have your standard client server setup going. I'm trying to post multiple objects as one to the server. The objects being posted are: ...
0
votes
2answers
34 views

Question about grouping or separating functions / methods that are alike

I'll take a real example I have to implement in a program I'm coding: I have a database that has the score of every game bowled in the past three years in a bowling center. With a GUI, you can choose ...
2
votes
1answer
473 views

Fading banner like text with jQuery

I have a title text, which I want to fade into a box. Afterwards, a subtitle should fade in beneath it. Once both are visible, they should fade out, and the next set should fade in, in the same ...
17
votes
1answer
2k views

Correctness of Sakamoto's algorithm to find the day of week

I am using Sakamoto's algorithm to find out the day of week from a given date. Can anybody tell me the correctness of this algorithm? I just want this from 2000 to 2099. The algorithm from Wikipedia ...
13
votes
1answer
258 views

Which compiler is right? 'template' before templated return type needed?

This snippet (taken from this question) compiles fine with g++ (as seen), so long the template before the return type is there. In contrast, VC10 does not compile that code with the following error: ...
2
votes
4answers
348 views

Implementation of class data validation

I have an object that represents physics characteristics of some air tunnel: public class Tunnel { public double Length { get; set; } public double CrossSectionArea { get; set; } public ...
2
votes
0answers
145 views

books to master “proof by induction”? [closed]

I find it hard to prove algorithms in a formal way, to improve my skills to prove the correctness of algorithms. Someone who had problem with the same and tried books and resources that can ...
0
votes
1answer
972 views

Is this implementation of the negamax algorithm correct

I'm trying to implement the negamax algorithm, and this is how I thought it should be: public Move getBestMove(Board board){ List<Move> possibleMoves = board.getPossibleMoves(); Move ...
3
votes
1answer
387 views

Cython correctness

Is code produced by Cython always just as correct as the Python code it was produced from? It may help other readers to address the use of Cython static type declarations and other Cython features ...
3
votes
4answers
3k views

How to fix the Findbugs issue “Null value is guaranteed to be dereferenced” NP_GUARANTEED_DEREF

Hi I have got some code that is reported as having the NP_GUARANTEED_DEREF issue by Findbugs. Now looking at my code I don't quite understand what is wrong with it, can anyone suggest what the problem ...
2
votes
5answers
398 views

Prove correctness of unit test

I'm creating a graph framework for learning purposes. I'm using a TDD approach, so I'm writing a lot of unit tests. However, I'm still figuring out how to prove the correctness of my unit tests For ...
1
vote
5answers
146 views

How important is it really to check every array index in PHP?

I'm working on quite a large project in which there are a lot of places where code like the following exists: function foo($a, $b, $c, $d, $e, $f) { $clean = array(); $mysql = array(); ...
1
vote
3answers
1k views

Write a wrapper object in Javascript

First off, let me apologize if my question isn't worded correctly - I'm not a professional coder so my terminology might be weird. I hope my code isn't too embarrassing :( I have a fade() method ...
4
votes
6answers
160 views

Simple assert for ordered non re-entrant calling?

I have two functions: void prepare() and void finish() that will be called sequentially like: prepare(); <do something>; finish(); ... prepare(); <do something>; finish(); I want ...
0
votes
2answers
248 views

Leaving parts of an 'If' statement blank (Quick and Easy Question)

if (comparison < 0 ) { // result is less } else if (comparison > 0) { // result is greater } else { System.out.println(something); } Hi there, quick question regarding the proper ...
6
votes
4answers
436 views

Verifying program correctness using phantom types in Haskell

Suppose I'm working with code of a stack machine, which can do some simple operations (push constant, add, mul, dup, swap, pop, convert types) on ints and doubles. Now the program I'm writing takes ...
5
votes
9answers
357 views

Standard C functions: Check for -1 or 0?

Many standard C and POSIX functions return -1 for error, and 0 on success, for example truncate, fflush, msync, etc. int ret = truncate("/some/file", 42); Is it better practice to check for success ...
12
votes
15answers
3k views

Switch statement with returns — code correctness

Let's say I have code in C with approximately this structure: switch (something) { case 0: return "blah"; break; case 1: case 4: return "foo"; break; case 2: ...
22
votes
10answers
12k views

How does Java handle integer underflows and overflows and how would you check for it?

How does Java handle integer underflows and overflows? Leading on from that, how would you check/test that this is occurring?

1 2