Coder Social home page Coder Social logo

missing-paradigm's Introduction

The Missing Paradigm

A program to search through possible programs for one that does what you want, drawing inspiration from There Are Exactly Three Paradigms.

The Idea

Goal: Find a function that satisfies your constraints

Idea: Search through all possible programs until you find one that does what you want.

There are some obvious problems:

  • How do you know the solution you find is good in the general case (i.e., not just a lookup table)?
    • We will assume the simplest solution (as in smallest syntax tree) is probably the more general one (although not always the case).
    • This can be further aided with additional (possibly randomized) tests.
  • This is an exponential time problem. How do you make it efficient?
    • Using strong type checking, we can significantly limit our search space by only composing functions whose type signatures are compatible.
    • Constrain functions that we are allowed to search.
    • Manually tweak function priority to use the functions the programmer thinks will be the most useful.
    • Use path finding algorithms to find short paths where type-checking works out to serve as a starting point.

Additional ideas:

  • Somehow "learn" patterns.
  • Bootstrap up from simple functions to more complex ones. Can also inject human made building blocks.
  • Make it help improve itself.

missing-paradigm's People

Contributors

nicolaschan avatar

Watchers

James Cloos avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.