Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
5answers
262 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 ...
11
votes
1answer
152 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: ...
11
votes
5answers
801 views

When do I need to specify the JavaScript protocol?

I was under the impression that I only need to specify the "protocol" when using JavaScript in URL attributes, such as in hrefs. Is this the only "useful" context for javascript:? Sensible: <a ...
8
votes
6answers
889 views

Proving correctness of multithread algorithms

Multithread algorithms are notably hard to design/debug/prove. Dekker's algorithm is a prime example of how hard it can be to design a correct synchronized algorithm. Tanenbaum's Modern operating ...
7
votes
8answers
2k 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?
7
votes
4answers
373 views

“Sign In” or “Log in” or “Login” [closed]

Possible Duplicate: UI Terminology: Logon vs Login Which is the right one to use - Sign in - Log in - Login Being a non-native English speaker it is difficult to distinguish them. I ...
6
votes
4answers
336 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 ...
6
votes
4answers
575 views

Opinion on “loop invariants”, and are these frequently used in the industry?

I was thinking back to my freshman year at college (five years ago) when I took an exam to place-out of intro-level computer science. There was a question about loop invariants, and I was wondering if ...
5
votes
9answers
309 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 ...
5
votes
14answers
417 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: ...
5
votes
4answers
228 views

is my Enumeration correct?

All over our project, we have this kind of enums. They works just fine, but we are not sure about them. Specially with the getDocumentType(String) method. Is there a way to avoid the iteration ...
4
votes
5answers
129 views

Two different Output

#include<stdio.h> int main(void) { static int i=i++, j=j++, k=k++; printf("i = %d j = %d k = %d", i, j, k); return 0; } Output in Turbo C 4.5 : i = 0 j = 0 k = 0 In gcc I'm ...
4
votes
8answers
890 views

Formally verifying the correctness of an algorithm

First of all, is this only possible on algorithms which have no side effects? Secondly, where could I learn about this process, any good books, articles, etc?
4
votes
7answers
347 views

Checking Python code correctness

In C++ I have compiler that tell me if something wrong with my code after refactoring. How to make sure that Python code is at least correct after changes? There may be some stupid error like wrong ...
4
votes
7answers
2k views

Counting trailing zeros of numbers resulted from factorial

I'm trying to count trailing zeros of numbers that are resulted from factorials (meaning that the numbers get quite large). Following code takes a number, compute the factorial of the number, and ...
4
votes
12answers
1k views

Loop termination conditions

These for-loops are among the first basic examples of formal correctness proofs of algorithms. They have different but equivalent termination conditions: 1 for ( int i = 0; i != N; ++i ) 2 for ( ...
3
votes
5answers
88 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 ...
3
votes
4answers
73 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 ...
3
votes
4answers
744 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 ...
3
votes
6answers
108 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 ...
3
votes
5answers
552 views

What is your experience with software model checking?

What types of applications have you used model checking for? What model checking tool did you use? How would you summarize your experience w/ the technique, specifically in evaluating its ...
2
votes
3answers
53 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 ...
2
votes
1answer
176 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 ...
2
votes
4answers
137 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
1answer
242 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 ...
2
votes
2answers
207 views

assign member based on string value

I need start off with code because I am not sure what terminology to use. Lets say I have the following code: class Node { public: void Parse(rapidxml::xml_node<> *node) { for ...
2
votes
1answer
160 views

What is the appropriate way to intercept WSGI start_response?

I have WSGI middleware that needs to capture the HTTP status (e.g. 200 OK) that inner layers of middleware return by calling start_response. Currently I'm doing the following, but abusing a list ...
2
votes
2answers
229 views

How to build without using locally installed artifacts

Is there any way to force Maven to use remote artifacts and not those installed on your machine? since I worry about runtime errors and not compilation errors build server is not valid option. P.S. I ...
2
votes
5answers
408 views

Assert multiple conditions in a single test, or split into multiple tests?

If you were testing a count function like the one below, is it considered to be 'right' or 'wrong' to test multiple things for the function in one function vs having a test function for each of the ...
2
votes
4answers
225 views

Are there any software guarantees in critical systems?

Are there systems or is there software out there that is developed with a proof of correctness to back it up? Or are all critical systems developed merely with an aggressive code review and test ...
2
votes
3answers
320 views

Random Number Generator: Class level or Method level?

When using a Random Number Generator, which is the better way to use it for greater randomness of the new value: Have a method that instantiates a new instance of the RNG each time and then returns ...
1
vote
6answers
137 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), ...
1
vote
1answer
30 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 ...
1
vote
4answers
186 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
113 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
344 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 ...
1
vote
10answers
396 views

How to write correct code at the first time? [closed]

I usually make lots of mistakes (logic errors, syntax errors) in the first attempt to accomplish some programming tasks. I have to write unit test to detect those bugs. This is especially problematic ...
1
vote
1answer
249 views

Correctness testing for process modelling application

Our group is building a process modelling application that simulates an industrial process. The final output of this process is a set of number representing chemistry and flow rates. This application ...
1
vote
8answers
1k views

Is this minimum spanning tree algorithm correct?

The minimum spanning tree problem is to take a connected weighted graph and find the subset of its edges with the lowest total weight while keeping the graph connected (and as a consequence resulting ...
0
votes
3answers
52 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 = ...
0
votes
0answers
32 views

Proof of Correctness for Next Palindrome Algorithm [closed]

The Next Palindrome Algorithm is mentioned in this link: http://www.algorithmist.com/index.php/SPOJ_PALIN I wanted to find a formal proof that this algorithm is correct ie. mirroring first half of ...
0
votes
1answer
133 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
28 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 ...
0
votes
0answers
81 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
226 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 ...
0
votes
2answers
136 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 ...
0
votes
2answers
115 views

What is the best way using multiple lines of <% %> Tag or <% %> Tag with multiple lines?

Sorry if the title is not enough to understand what i am asking about. I am rails developer and i used multiple lines of <% %> in my views but now i realized that it's not best practice so i came ...
0
votes
1answer
147 views

Is there an easy way to verify replication articles are correct?

On a Publication (secondarily, a Subscription), is there a script or command I can run that verifies that the articles currently in place match what is expected and/or correct? If changes were ...
0
votes
3answers
447 views

Best design for RadioButtonList usage

I have a problem and i would like to learn the correct way to solve this. I have a Data Objeckt class LinkHolder { public string Text; public string Link; } I would like to present to the ...