Program Synthesis in 2017-18
alexpolozov.com
Program Synthesis in 2017-18
1–10 of 11 posts
Re: Program Synthesis in 2017-18
#2Re: Program Synthesis in 2017-18
#3Re: Program Synthesis in 2017-18
#4The big problem I see with program synthesis is that specifications will need to be exceedingly complex in order to cover all cases ( http://www.commitstrip.com/en/2016/08/25/a-very-comprehensiv... ). Even then, you’re not going to be able to predict exactly how these black box programs will behave.
If you didn't have to worry about performance, I think programming would be immensely easier.
Re: Program Synthesis in 2017-18
#5The big problem I see with program synthesis is that specifications will need to be exceedingly complex in order to cover all cases ( http://www.commitstrip.com/en/2016/08/25/a-very-comprehensiv... ). Even then, you’re not going to be able to predict exactly how these black box programs will behave.
That said, maybe there's a need for something like that. A programmer could write an exceedingly thorough set of unit tests and let the synthesizer worry about how to satisfy those tests. Writing tests is almost universally simpler and easier than writing implementations. I can see the potential productivity enhancing value of that, especially in situations where I have to work in an unfamiliar framework. Like I might not know how to write an Electron app, but I could certainly write the unit tests to specify the front end behavior I want. A synthesizer could save me from having to learn all the nitty gritty framework specific techniques. Basically TDD without having to do the actual implementation. And eventually if the application required performance enhancements, a developer with the correct expertise could tune my synthesized code.
Because, right now, developing specifications is by far the hardest part of coding. But implementation is still not trivial in most cases. For certain use cases, it might be helpful to free up developer time to focus on specifications and QA instead of feature crunching.
Re: Program Synthesis in 2017-18
#6The big problem I see with program synthesis is that specifications will need to be exceedingly complex in order to cover all cases ( http://www.commitstrip.com/en/2016/08/25/a-very-comprehensiv... ). Even then, you’re not going to be able to predict exactly how these black box programs will behave.
Re: Program Synthesis in 2017-18
#7The big problem I see with program synthesis is that specifications will need to be exceedingly complex in order to cover all cases ( http://www.commitstrip.com/en/2016/08/25/a-very-comprehensiv... ). Even then, you’re not going to be able to predict exactly how these black box programs will behave.
It seems like any sufficiently detailed specification is pretty much already code or is trivial to translate into code. A language for providing those specifications to a synthesizer would likely balloon into a full-blown programming language, defeating the entire point of this approach. At that level of complexity, a synthesizer just becomes an especially aggressive compiler. That said, maybe there's a need for some…
What could work is synthesis as a more intelligent form of code completion for small snippets.
Re: Program Synthesis in 2017-18
#8Say sorting. You don't need to learn any computer science to tell a list of number is sorted or not.
Problem with the specs. Yes it's irritating to give spec that covers all the cases. But it's a universal problem in software engineering "How do I know the code works"? which applies to programs written by either human or computers.
As far as I know the solution is to write a lot of test cases. By doing that you just created a lot of examples to train a program synthesizer. It doesn't really matter the codes that pass all your tests are written by the engineer you hired or the synthesizer.
Re: Program Synthesis in 2017-18
#9The big problem I see with program synthesis is that specifications will need to be exceedingly complex in order to cover all cases ( http://www.commitstrip.com/en/2016/08/25/a-very-comprehensiv... ). Even then, you’re not going to be able to predict exactly how these black box programs will behave.
Re: Program Synthesis in 2017-18
#10Earlier quoted context omitted.
It seems like any sufficiently detailed specification is pretty much already code or is trivial to translate into code. A language for providing those specifications to a synthesizer would likely balloon into a full-blown programming language, defeating the entire point of this approach. At that level of complexity, a synthesizer just becomes an especially aggressive compiler. That said, maybe there's a need for some…
Sythesising an entire application is not going to happen even if you managed to lock down its behaviour with unit tests because the time it takes to search for a program of size n is exponential. What could work is synthesis as a more intelligent form of code completion for small snippets.