vote up 3 vote down star

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 industry stress the use of invariants?

flag

not a question, voting to close – cletus Nov 7 at 9:07
1  
It's very relevant imo. The word "Poll" may be misleading, the question should probably have had the title "Should we use invariants?" or something like that. – Lars D Nov 7 at 9:11
Could you elaborate on what you mean by using them, e.g. by given an example? It's possible people use what you're talking about without realising that that's what you mean by "invariant". – Edmund Nov 7 at 9:26
@Edmund: en.wikipedia.org/wiki/Invariant_(computer_science/…) – Lars D Nov 7 at 9:35

3 Answers

vote up 5 vote down check

Depends on who you ask - I use invariants simply because it makes life easier. Learning invariants is like learning blind-typing. Each time you use an invariant, you know more about your code. If you insert the invariant as a comment in your loop, it helps the reader A LOT. I would say that using invariants makes creation and maintenance of source code much cheaper, and makes you able to create much more sophisticated algorithms, which are still maintainable.

And in contrast to OOP, I have never experienced anyone wasting their time by using invariants.

link|flag
vote up 0 vote down

If you use a simple approach to creating invariants where they make sense, the "more time to create" will be paid for in correctness.

For example

bool Invariant() const
{
   return age >= MIN_AGE
     && age <= MAX_AGE
     && temperature >= MIN_TEMPERATURE
     && temperature <= MAX_TEMPERATURE
     && !name.empty();
}

This can be created in one minute, and then you can use it to check that your object is correct after every creation or modifying procedure. You will typically need conditional compilation to wipe this out in release versions, for performance purposes. But you have that in any modern language.

Update: For the bigger picture, see questions about Design by Contract.

link|flag
vote up 4 vote down

I don't think about invariants very much - not as much as pre/post-conditions. I should probably think about invariants more, to be honest.

One thing to think about is immutability - if you're using an OO language but make types immutable where you can, you don't need to worry about invariants as much: if the state is valid to start with, it will stay valid.

It does sound like your course may be over-emphasizing invariants a little bit... but it does depend on what you're doing. They're more appropriate in some situations than others. Maybe your lecturer is just a big fan of them with a lot of experience in areas where they're really useful.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.