I was having a discussion earlier about a state machine, and there was a question as to whether it might not halt on some input. It seems like a property of state machines that is important and frequently mentioned, but I can't for the life of me figure out what the name of that property is. Is there such a term? Is it "haltable", "not-infinitely-loopy", or something else?

link|improve this question

2  
Had to give it +1 for "not-infinitely-loopy" – Eric Jun 24 '10 at 19:06
feedback

2 Answers

up vote 9 down vote accepted

A machine that always halts is called a decider.

A decider need only be a machine that halts on all inputs. For example, all DFAs are deciders, as are DPDAs.

link|improve this answer
Ah, yes, that was it exactly! Thank you very much! – CaptainAwesomePants Jun 24 '10 at 19:23
Cool! Didn't know that. I'll leave my previous answer below just in case people are interested in the Halting Problem. – nearlymonolith Jun 24 '10 at 19:34
feedback

My guess would be "halting", derived from the famous "halting problem", which is similar to your question, namely whether it will halt on a given input. An important consideration is that a machine is not defined as "halting" in general, but rather for a specific input. The general case is proven to be unsolvable (by Turing himself).

link|improve this answer
it's my favorite – nearlymonolith Jun 24 '10 at 19:33
feedback

Your Answer

 
or
required, but never shown

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