Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
6answers
2k views

What is an invariant?

The word seems to get used in a number of contexts. The best I can figure is that they mean a variable that can't change. Isn't that what constants/finals (darn you Java!) are for?
13
votes
3answers
748 views

How free can I be in the code in an object invariant?

I'm trying to demonstrate invariants in Code Contracts, and I thought I'd give an example of a sorted list of strings. It maintains an array internally, with spare space for additions etc - just like ...
9
votes
2answers
119 views

What is a class invariant in java?

I googled the topic, but besides Wikipedia I didn't find any further useful documentation or articles. Can anybody explain to me in simple words what it means or refer me to some nice and easy to ...
9
votes
5answers
543 views

Simple examples of co and contravariance

Could someone provide me simple C# examples of convariance, contravariance, invariance and contra-invariance (if such thing exists). All samples I've seen so far was just casting some object into ...
8
votes
6answers
327 views

checking invariants in C++

Are there any established patterns for checking class invariants in C++? Ideally, the invariants would be automatically checked at the beginning and at the end of each public member function. As far ...
7
votes
4answers
956 views

How do you validate an object's internal state?

I'm interested in hearing what technique(s) you're using to validate the internal state of an object during an operation that, from it's own point of view, only can fail because of bad internal state ...
6
votes
2answers
203 views

C# 3.5 Covariance issue?

I've been hearing/reading a lot about covariance issues in C# and I wanted to pose a few questions & scenarios so hopefully I can clear up my confusion on the matter. Throughout these examples, ...
6
votes
3answers
245 views

Specifying invariants on value constructors

Consider the following data Predicate = Pred Name Arity Arguments type Name = String type Arity = Int type Arguments = [Entity] type Entity = String This would allow the creation of ...
6
votes
4answers
165 views

Adding Invariants to Interfaces in Java

I've been thinking about creating a Java framework that would allow programmers to specify invariants (pre- and post-conditions) on interfaces. The purpose would be to make code more robust and reduce ...
6
votes
8answers
437 views

Beginner question - Loop invariants (Specifically Ch.3 of “Accelerated C++”)

as I said, a complete beginner question here. I'm currently working my way through "Accelerated C++" and just came across this in chapter 3: // invariant: // we have read count grades so far, and ...
6
votes
4answers
573 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
2answers
95 views

Is there a static invariant discovery tool for C programs?

I'm looking for a tool that can statically discover invariants in C programs. I checked out Daikon but it discovers invariants only dynamically. Is there a tool available for what I'm looking for? ...
5
votes
4answers
350 views

Do invariant assertions fit into C# programming?

In the book coders at work, the author asks "How do you use invariants in your code". Please explain what this question means. I saw class invariants on wiki, but the example is in Java and I am not ...
5
votes
3answers
213 views

Do you use invariants when you program?

I am taking an intermediate programming course which stresses the use of invariants. I have never used them before and they seem to take up more time to create. Does the software engineering ...
4
votes
5answers
530 views

What is the best way of determining a loop invariant?

When using formal aspects to create some code is there a generic method of determining a loop invariant or will it be completely different depending on the problem?
3
votes
1answer
34 views

Can this statement be regarded as a class invariant?

This is a highly general thought, but let's use C# in this example. Given that I have a disposable class Foo, i.e., it implements IDisposable. Foo has a boolean flag disposed that is false until ...
3
votes
3answers
140 views

How to implement a Stack class in C#, with pre/postconditions and invariants?

Does anyone have any examples or ideas on how / what is the best way to implement a Stack class in C#? I understand that there is already a Stack class, but I need to understand how to actually ...
3
votes
3answers
63 views

Can I get Code Contracts to warn me about “illegal” subtyping?

Sorry if this question seems too long. Before I can ask it, I need to show where it's coming from. Set-up: Given the following immutable type Rectangle: class Rectangle { public ...
3
votes
2answers
166 views

Does it make sense to throw a private exception?

I want to throw a runtime exception in case my class invariants are invalidated. Since this is a programming error (similar to a NullPointerException), clients should not catch that exception. Should ...
3
votes
3answers
881 views

Are preconditions and postconditions needed in addition to invariants in member functions if doing design by contract?

I understand that in the DbC method, preconditions and postconditions are attached to a function. What I'm wondering is if that applies to member functions as well. For instance, assuming I use ...
2
votes
1answer
46 views

D class invariant calling const functions

Why does the following throw a compiler error: class A { public: int f() const { return 5; } protected: invariant() { assert (f() == 5); } } main.d(14): ...
2
votes
3answers
70 views

OpenGL deterministic rendering between GPU vendor

I'm currently programming a scientific imaging application using OpenGL. I would like to know if OpenGL rendering (in term of retrieved pixel from FBO) is supposed to be fully deterministic when my ...
2
votes
3answers
564 views

Loop invariant of linear search

As seen on Introduction to Algorithms (http://mitpress.mit.edu/algorithms), the exercise states the following: Input: Array A[1...n] Output: i, where A[i]=v or NIL when not found Write a ...
2
votes
6answers
3k views

Empty constructors and setters on JPA Entites

I don't like the requirement on have at least one empty constructor and public setters on JPA entities. While I understand the issue on the EntityManager side, this invalidates class invariants. Does ...
1
vote
2answers
55 views

Loop Invariant for function to compute factorials

I'm having a hard time correctly identifying a loop invariant for the following function: F(y) X <-- 1 while (y > 1) do x <-- x * y y <-- y - 1 return (x) ...
1
vote
0answers
22 views

If an invariant is broken - Attempt to accommodate elegantly or assume all is lost and jump ship?

Say I have a function which when originally built assumed that the entity that comes in has a Description and Title property. When I build my tests I get an Null reference error as I am initializing ...
1
vote
1answer
108 views

Identify directions of similar triangles in MATLAB

I have a BW bitmap of similar triangles. I am trying to identify the direction each triangle is facing. By "facing" I mean describing the direction in a way what is constant across all triangles, by ...
1
vote
2answers
75 views

Find Maximum Value in Array in Ada

I am doing an Ada program with lots of different functions messing with arrays, i got all my sorting functions going, i am now stuck on retrieving the maximum value in an array using a loop invariant ...
1
vote
1answer
37 views

code skips over Contract.Requires

I'm trying to write this method using c# contracts...but when debugging, it completely ignores the Contract.requires and CheckRep() Am I using this incorrectly?? public Poly Add(Poly q) { ...
1
vote
1answer
79 views

DDD and Factories

Hi I have a few questions regarding Domain Driven Design and using Factories / Factory Methods. Per the Domain Driven Design Blue Book (Eric EVan's Book) it states that complex constructors should be ...
1
vote
1answer
65 views

Where evaluate invariants after and before call a routine?

In the design by contracts, the class invariant must be satisfied on two occasions: after creating the object and after call a routine. Are there any examples or conditions, which I have to do the ...
1
vote
4answers
250 views

Java loop invariant

int logarithmCeiling(int x) { int power = 1; int count = 0; while (power < x) { power = 2 *power; count = count +1; } return count; } The code above is meant ...
1
vote
3answers
395 views

Hoare Logic Loop Invariant

I'm looking at Hoare Logic and I'm having problems understanding the method of finding the loop invariant. Can someone explain the method used to calculate the loop invariant? And what should a loop ...
1
vote
1answer
85 views

JML not null variants?

i have a JML questions. what is the difference between /*@ invariant array_ != null; */ and declaring it as protected /*@ non_null */ Object[] array_; regarding the elements of array_? What ...
1
vote
1answer
34 views

Heuristics for finding class invariants

Is there any heuristics for finding class invariants, I mean pay attantion on ...; never rely on ...; Maybe there is common advices. Any links on paper where studing real-life examples will be ...
1
vote
2answers
678 views

How to maintain a recursive invariant in a MySQL database?

I have a tree encoded in a MySQL database as edges: CREATE TABLE items ( num INT, tot INT, PRIMARY KEY (num) ); CREATE TABLE tree ( orig INT, term INT FOREIGN KEY ...
0
votes
0answers
18 views

Hoare Logic, while loop with '<= '

I'm working on some Hoare logic and I am wondering whether my approach is the right one. I have the following program P: s = 0 i = 1 while (i <= n) { s = s + i i = i + 1 } It should ...
0
votes
1answer
62 views

What is the Loop Invariant in the following code

What is the Loop Invariant(s) in this sample code. This is an excerpt code implemented in C programming language: //pre-condition m,n >= 0 x=m; y=n; z=0; while(x!=0){ if(x%2==0){ x=x/2; ...
0
votes
4answers
154 views

Enforce use of Getter / Setter within same class (C++)

Is there a way in C++ to enforce the use of getters or setters WITHIN the class? class C{ private: int x; // should only be Changed by setX(); private: setX(int i){ (...) ...
0
votes
1answer
86 views

How do I Determine What the Invariant Is?

Quite simply, when designing a new class, how do I figure out what the invariant should be? What defines the invariant? I've heard that it's tied into validity, but that's still ambiguous. What ...
0
votes
0answers
109 views

What is “at-most-once invariant and Existence, Ownership, and Conservation rules”

I'm helping a friend of mine with her homework on data structure courses by giving better/clearer instructions, hints and make sure she doesn't go too far in the wrong direction. The introduction of ...
0
votes
2answers
96 views

Binary chop: if list[middle] == key case

I'm revising algorithms for my exams and I was trying to solve this exercise but I couldn't come up with a solution. This is the pseudo-code. 1. int search (int [] a, int x) { 2. // Pre: ∃i:Nat ...
0
votes
5answers
2k views

Set size on char array in Java

I'm developing an Android application. I want to set size to a char array like this: public char[5] language; But it doesn't work. I have to delete number five to make it work. I want to limit to ...
0
votes
2answers
214 views

Are missing invariants for an object always a sign of bad design?

I was just thinking of cases when invariant(s) for mainly classes, but to some extent also structs, cannot be readily defined. Would the lack of invariant(s) be a definitive sign of bad design of the ...