99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

CMPT 489代做、Program Synthesis編程設計代寫

時間:2023-12-07  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



CMPT 489 / 980 Program Synthesis
Final Project
Phase I is due by 11:59pm PT on Wednesday Nov 8, 2023. Phase II is due by 11:59pm PT on Tuesday
Dec 5, 2023. Please submit them to Canvas on time. No late submission is accepted.
Requirements:
• This project must be your own work. No collaboration is permitted.
• The programming language of this project is Java 11.
• You can learn the code on slides and start from it.
• You can use third-party libraries but not existing synthesizers. However, you can implement the
algorithms in existing synthesizers by yourself.
1 Problem Description
Consider the following context-free grammar G
E ::= Ite(B, E, E) | Add(E, E) | Multiply(E, E) | x | y | z | 1 | 2 | 3
B ::= Lt(E, E) | Eq(E, E) | And(B, B) | Or(B, B) | Not(B)
x, y, z ∈ Variables 1, 2, 3 ∈ Constants
Here, E is the start symbol. E and B are non-terminals; all other symbols are terminals. The meaning
of terminal symbols are self-explanatory. Specifically, Ite is the if-then-else operator. Add is the addition
(+) operator. Multiply is the multiplication (∗) operator. x, y, z are integer variables. 1, 2, 3 are integer
constants. Lt is the less-than (<) operator. Eq is the equals (==) operator. And is the logical conjunction
(&&). Or is the logical disjunction (||). Not is the logical negation (!).
In this project, you need to write an example-based program synthesizer in Java. Specifically, the
synthesizer takes as input a list of input-output examples and the context-free grammar G and produces
as output an implementation of f(x, y, z) in the language of G such that f(x, y, z) is consistent with the
provided examples. You can assume f only uses three variables x, y, z, and all their types are Int. The return
type of f is also Int. If the synthesis succeeds, your program should print the program, e.g., Add(Add(y,
z), x), to the console. Otherwise, if the synthesis fails, the program should print null.
2 Codebase
A codebase is provided as the starting point. It contains the basic framework for the synthesizer. Details
are explained as follows.
Package synth.cfg
This package defines the data structure for the context-free grammar (CFG). It has the following classes
• Symbol. An abstract class for symbols in the CFG.
• Terminal. A subclass of Symbol that corresponds to terminals in the CFG.
• NonTerminal. A subclass of Symbol that corresponds to non-terminals in the CFG.
1
• Production. A class for productions in the CFG. A production is of the form
ReturnSymbol ::= Operator(ArgSymbol, ..., ArgSymbol)
• CFG. A class for representing the CFG. The most important method is getProductions, which takes
as input a non-terminal symbol N and returns as output a list of all productions with N being the
left-hand-side of the production.
Package synth.core
This package contains the classes for synthesizers, examples, programs, and interpreters.
• ASTNode. A class for general Abstract Syntax Tree (AST) nodes. The symbol fields corresponds to
the symbol in the CFG. The children field corresponds to the children nodes.
• Program. A class for representing a program. It only has one field root, which is the root node of the
corresponding AST.
• Example. A class that defines the data structure of an example. The input field is a map from variable
names to their values. The output field is the output value.
• Interpreter. A class that defines an interpreter of the language of G. The most important method
is the static method evaluate, which takes as input a program and an environment and returns as
output the evaluation result. The environment is essentially a map from variable names to their values,
just like the input field of Example. Concrete examples on how to use Interpreter.evaluate are
provided in the test class synth.core.InterpreterTests.
• ISynthesizer. An interface that defines the input and output of a synthesizer. The inputs are a CFG
and a list of examples. The output is a program.
• TopDownEnumSynthesizer. A top-down enumerative synthesizer that implements the ISynthesizer
interface. You need to implement this class.
Package synth.util
This package contains the utility classes and methods.
• FileUtils. A class for file operations. The readLinesFromFile static method reads a file into a list
of strings, where each line of the file is a string.
• Parser. A class for parsing the examples. The parseAnExample static method parses text of the form
“x=a, y=b, z=c -> d” to an object of class Example. The parseAllExamples static method parses
a list of examples from a list of strings, where each string corresponds to an example. It ignores empty
strings.
Class synth.Main
The main class of the framework. It has two methods.
• main. It is the entry of the program. It takes one command-line argument args[0] for the path to
the examples file.
• buildCFG. It builds the CFG G in Section 1.
Tests
JUnit tests are provided in the src/test directory. You are welcome to add more!
• synth.core.InterpreterTests. It contains several unit tests for the interpreter, which is also helpful
for understanding the usage of the interpreter.
2
Other Files
• pom.xml. The configuration file for Maven.
• examples.txt. A sample examples file.
3 Compilation and Execution
Compilation. This codebase uses the Maven build system. Suppose you enter the Synth directory, the
project can be easily compiled with one command
$ mvn package
Then you should be able to see the message “BUILD SUCCESS”. A directory called target will be created
and a jar file called synth-1.0.jar will be generated inside the target.
Execution. In the Synth directory, you can execute the program using the following command (use ;
instead of : in Windows)
$ java -cp lib:target/synth-1.0.jar synth.Main <path-to-examples-file>
where <path-to-examples-file> is the path to the examples file. For example, you can run
$ java -cp lib:target/synth-1.0.jar synth.Main examples.txt
You will see a runtime exception with message “To be implemented”, because the synthesizer is not implemented yet. After you finish implementing the synthesizer, you should see something like (not unique)
Add(Add(y, z), x)
4 Phase I
In Phase I, you need to implement a top-down enumerative synthesizer in synth.core.TopDownEnumSynthesizer.
Deliverable
A zip file called Phase1 Firstname Lastname.zip that contains at least the followings:
• The entire Synth directory. You can change existing code if you want, but please make sure the project
can be compiled and executed as explained in Section 3.
• A short report (**2 pages) called Phase1 Firstname Lastname.pdf that explains the design choices,
features, tests, issues (if any), and anything else that you want to explain about your program.
5 Phase II
In Phase II, you can implement any synthesis algorithm that improves the performance of the synthesizer on
the same problem. You also need to create a small benchmark set and evaluate your algorithm
over the benchmarks.
A zip file called Phase2 Firstname Lastname.zip that contains at least the followings:
• The entire Synth directory. You can change existing code if you want, but please make sure the project
can be compiled and executed as explained in Section 3.
• A long report (5-6 pages) called Phase2 Firstname Lastname.pdf that explains the algorithms,
benchmarks, evaluation results, design choices, features, tests, issues (if any), and anything else
that you want to explain about your program.
請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:CS 202代寫、代做Operating Systems設計
  • 下一篇:CPT109程序代做、代寫C/C++編程語言
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          欧美亚洲免费高清在线观看| 国产一区二区三区在线播放免费观看| 亚洲一区不卡| 一色屋精品亚洲香蕉网站| 欧美久久久久久久| 老司机精品福利视频| 亚洲自拍电影| 亚洲美女91| **网站欧美大片在线观看| 国产精品免费视频xxxx| 欧美激情第10页| 久久久精品国产免大香伊 | 亚洲自拍偷拍麻豆| 亚洲精品一区二区三区四区高清| 国产色爱av资源综合区| 国产精品久久久久一区| 欧美区在线播放| 欧美激情综合网| 欧美高清在线视频观看不卡| 欧美专区在线| 欧美一区国产二区| 亚洲欧美日韩国产精品 | 欧美日韩免费在线| 欧美寡妇偷汉性猛交| 美日韩在线观看| 蘑菇福利视频一区播放| 蜜臀久久99精品久久久久久9| 欧美一区二区三区免费视频| 亚洲在线播放| 欧美伊人久久久久久久久影院| 亚洲特级片在线| 亚洲影院色在线观看免费| 在线亚洲精品| 中文国产亚洲喷潮| 亚洲一区二区三区免费视频| 亚洲一区三区电影在线观看| 亚洲一区在线观看视频| 午夜在线成人av| 久久精品首页| 欧美国产日韩免费| 欧美系列电影免费观看| 国产欧美精品日韩精品| 国内一区二区三区在线视频| 亚洲欧美视频在线观看视频| 性刺激综合网| 亚洲精品日韩在线| 亚洲香蕉网站| 欧美一区二区大片| 欧美freesex8一10精品| 欧美日韩成人免费| 国产日韩精品电影| 亚洲国产cao| 1024国产精品| 99精品免费| 亚洲欧美日韩国产一区二区| 久久嫩草精品久久久精品一| 99综合电影在线视频| 亚洲综合色激情五月| 久久先锋资源| 国产精品yjizz| 国产自产精品| 亚洲欧洲精品一区二区三区| 亚洲一区二区三区中文字幕在线 | 欧美日韩亚洲91| 国产午夜精品一区二区三区视频 | 欧美日韩日韩| 精品成人一区二区三区| 亚洲一区二区在线| 欧美aaa级| 国产人成精品一区二区三| 亚洲国产精品久久久久秋霞影院| 亚洲影院色无极综合| 美日韩在线观看| 国产无一区二区| 99精品免费视频| 久久综合久久久久88| 久久久999国产| 国产精品成人一区二区艾草| 亚洲欧洲一区二区天堂久久| 久久成人一区二区| 国产精品家教| 99av国产精品欲麻豆| 米奇777超碰欧美日韩亚洲| 国产精品视频久久久| 中国亚洲黄色| 欧美日韩在线三区| 日韩一区二区福利| 欧美精品电影在线| 欧美日韩中文字幕在线| 91久久精品一区| 蜜桃精品一区二区三区| 在线观看欧美视频| 久久精品一区二区三区不卡| 国产嫩草一区二区三区在线观看 | 国产精品高潮呻吟久久av黑人| 亚洲电影观看| 欧美高清一区二区| 亚洲国产日韩美| 欧美高清在线| 99pao成人国产永久免费视频| 欧美精品日本| 亚洲精品一级| 欧美日韩在线播放一区| 一本色道久久综合| 欧美午夜电影网| 性欧美xxxx大乳国产app| 国产一区二区三区奇米久涩| 亚洲精品1区2区| 欧美日韩成人免费| 亚洲网站在线播放| 国产欧美精品日韩区二区麻豆天美| 欧美一区二区三区播放老司机| 国产亚洲综合在线| 蜜桃av一区二区三区| 亚洲精品午夜| 国产精品日韩欧美大师| 久久久国产亚洲精品| 亚洲激情视频在线播放| 欧美日韩在线免费| 欧美一区二区免费视频| 亚洲电影第1页| 欧美日韩亚洲国产精品| 欧美一区二区久久久| 在线观看欧美成人| 国产精品久久久久久久久免费 | 久热爱精品视频线路一| 在线观看欧美视频| 国产精品成人午夜| 久久午夜羞羞影院免费观看| 亚洲精品人人| 国产情侣一区| 欧美日韩视频一区二区三区| 久久精品噜噜噜成人av农村| 亚洲国产午夜| 国产综合一区二区| 欧美日韩精品在线观看| 久久久国产亚洲精品| 一区二区久久| 亚洲大片在线| 国产一区二区三区无遮挡| 欧美乱妇高清无乱码| 久久xxxx精品视频| 一区二区三区四区国产| 亚洲国产va精品久久久不卡综合| 国产精品igao视频网网址不卡日韩| 久久亚洲春色中文字幕| 亚洲欧美日本国产有色| aa级大片欧美三级| 亚洲国产精品一区二区www| 国产美女一区二区| 欧美视频一区二区在线观看| 欧美mv日韩mv国产网站| 久久精品盗摄| 欧美在线视频一区二区| 亚洲一级黄色| 一区二区三区www| 亚洲精品欧美一区二区三区| 玉米视频成人免费看| 国产午夜精品久久| 国产亚洲精品久久久久久| 国产精品毛片| 国产精品久久精品日日| 国产精品jvid在线观看蜜臀| 欧美区视频在线观看| 欧美理论在线播放| 欧美日韩伊人| 欧美婷婷久久| 国产精品久久久久久av福利软件| 欧美午夜精品一区| 国产精品久久久久久模特| 欧美午夜视频在线观看| 国产精品男gay被猛男狂揉视频| 欧美性片在线观看| 国产伦精品一区二区三区视频黑人 | 亚洲国产影院| 亚洲级视频在线观看免费1级| 最新高清无码专区| 一本色道久久加勒比88综合| 一个色综合av| 在线视频日韩| 亚洲欧美综合国产精品一区| 欧美在线高清视频| 免费观看一区| 欧美日韩国产精品成人| 欧美午夜精品久久久久久孕妇| 欧美日韩一区二区在线观看 | 国产精品老女人精品视频| 国产精品私拍pans大尺度在线| 国产日韩欧美精品综合| 亚洲第一色中文字幕| 国产精品99久久久久久久久| 久久久久.com| 欧美日韩一区二区在线视频| 久久久青草婷婷精品综合日韩 | 欧美午夜视频在线| 国产精品亚洲综合天堂夜夜| 一区二区在线视频观看| 一区二区冒白浆视频| 久久久蜜桃一区二区人| 欧美日韩亚洲网|