Socket
Book a DemoInstallSign in
Socket

halting-problem

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

halting-problem

Solves the halting problem :)

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

halting-problem

Solves the halting problem :)

Not really, sadly that's impossible. What this program does aim to do is pick up on some really simple examples of while loops and for loops that never terminate. It's extremely limited and written with the aim of only ever picking up programs that definitely never halt.

Build Status Dependency Status NPM version

Installation

npm install halting-problem

Usage

var halts = require('halting-problem');
try {
  halts('while (true);');
  console.log('It halts!');
} catch (ex) {
  console.log('oops, this program never halts');
}

You can also catch any addtional errors by using halts.loopProtect.

var halts = require('halting-problem');
try {
  var src = halts.loopProtect('function foo() { return true; } while (foo());');
  Function('haltingProblem', src)(halts);
  console.log('It halts!');
} catch (ex) {
  console.log('oops, this program never halts');
}

API

halts(src)

Assert that some code might halt. This will catch some really obvious errors where a while loop never exits. It throws an error if src is some JavaScript with an obvious infinite loop.

halts.loopProtect(src, protectFn)

Adds calls to protectFn (which defaults to haltingProblem.protect) inside any places where an infinite loop might occur.

halts.protect(lineNumber)

Throws an error if more than 1 second (or the specified timeout) has elapsed since the last time halts.reset was called.

halts.reset(timeout)

Resets the timeout (which defaults to 1 second).

Examples

This example halts:

var n = 10;
while (n > 0) {
  n--;
}

In this example, the user accidentally typed m instead of n, so this does not halt:

var n = 10;

while (n > 0) {
  m--;
}

Assumptions

Erring on the side of safety, this assumes that any function call results in any loops exiting. For example, they could throw an error.

Erring on the side of pragmatism, this assumes that there is no dead-code. e.g. it incorrectly states that the following code does not terminate:

if (false) {
  while (true) {}
}

Erring on the side of pragmatism, this assumes that no exceptions are thrown other than explicit throw statements.

Throwing an error is treated as an acceptable way out of an infinite loop, even if there is no catch block to handle it.

Contributing

If you find any program that does eventually halt, but that this library throws an error for (but that doesn't break any of the assumptions) submit a pull request to add the script to /test/halting and I will do my best to fix it.

There are crazy numbers of programs that don't halt, but that this program won't catch. Please do not submit an issue for such programs. Also do not submit pull requests that just add a test case for such a program. Please do add code to detect such cases though. I'd love this to catch a more significant number of non-trivial cases where JavaScript will go into an infinite loop.

License

MIT

FAQs

Package last updated on 03 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts