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爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          欧美精品午夜| 国产亚洲成av人在线观看导航| 亚洲图色在线| 尤物九九久久国产精品的特点| 欧美日韩另类国产亚洲欧美一级| 精品电影在线观看| 国产精品日韩二区| 欧美精品v国产精品v日韩精品 | 欧美精品日韩三级| 亚洲精选中文字幕| 精久久久久久久久久久| 国产精品婷婷午夜在线观看| 欧美裸体一区二区三区| 久久看片网站| 久久久夜夜夜| 亚洲电影网站| 黑人一区二区| 国产婷婷色一区二区三区在线 | 中文有码久久| 一本色道久久综合狠狠躁篇怎么玩 | 卡一卡二国产精品| 久久精品夜色噜噜亚洲aⅴ| 亚洲自拍偷拍福利| 国产日韩精品在线| 国产精品久久久久久久午夜 | 亚洲一区三区视频在线观看| 亚洲美女av网站| 亚洲美女色禁图| 亚洲最新视频在线播放| 亚洲精品黄网在线观看| 亚洲国产影院| 亚洲久久一区| 国产女精品视频网站免费| 国产精品sss| 国产欧美一区二区白浆黑人| 国产精品亚洲成人| 国产一区自拍视频| 在线观看不卡| 亚洲精品激情| 亚洲综合视频网| 久久精品国产96久久久香蕉| 久久亚洲二区| 欧美日韩不卡合集视频| 国产精品色网| 黄色亚洲在线| 一本一本久久| 久久精品午夜| 欧美久久久久免费| 国产精品一区二区你懂的| 国产综合久久久久久| 亚洲激情一区| 亚洲欧洲av一区二区三区久久| 亚洲欧美日韩一区二区三区在线| 久久精品国产清高在天天线| 欧美国产视频在线观看| 国产精品视频yy9099| 在线视频成人| 国产综合欧美| 99视频有精品| 久久久噜噜噜久久久| 欧美日韩国产欧美日美国产精品| 国产精品美女久久福利网站| 亚洲第一精品久久忘忧草社区| 99伊人成综合| 麻豆成人在线| 欧美jizz19hd性欧美| 久久久一区二区| 国产精品久久久久永久免费观看| 伊人久久亚洲影院| 亚洲免费在线视频| 欧美激情在线播放| 国产亚洲精品一区二555| 99pao成人国产永久免费视频| 欧美中文字幕不卡| 久久久精品2019中文字幕神马| 欧美精品18videos性欧美| 麻豆精品国产91久久久久久| 国产精品入口夜色视频大尺度| 亚洲精选在线观看| 美脚丝袜一区二区三区在线观看 | 国产精品女人网站| 亚洲精品一区二区三区福利| 久久久久久高潮国产精品视| 国产精品亚洲а∨天堂免在线| 亚洲人成网站在线播| 久久久久免费视频| 国产偷国产偷亚洲高清97cao| 宅男噜噜噜66国产日韩在线观看| 欧美成人一区二区三区片免费| 激情文学一区| 久久婷婷蜜乳一本欲蜜臀| 国产亚洲精品久久久久婷婷瑜伽| 亚洲一区二区三区色| 欧美日韩国产综合一区二区| 91久久夜色精品国产九色| 亚洲精品乱码久久久久久蜜桃麻豆 | 夜夜爽99久久国产综合精品女不卡| 欧美怡红院视频一区二区三区| 日韩一区二区高清| 欧美黑人在线观看| 亚洲精品久久久久久久久久久久 | 伊人婷婷欧美激情| 久久亚洲精品一区二区| 国内精品久久久久久| 老司机一区二区三区| 亚洲国产精品一区制服丝袜| 你懂的一区二区| 99精品视频免费全部在线| 欧美日韩中文在线观看| 亚洲一区观看| 欧美成人国产va精品日本一级| 欧美午夜精品久久久久久孕妇| 亚洲视频在线观看三级| 国产精品日韩在线| 久久精品一区二区国产| 亚洲国产导航| 久久精品午夜| 亚洲另类在线一区| 国产精品久久毛片a| 久久精品免费电影| 亚洲狼人综合| 国产一区二区电影在线观看| 美女网站久久| 国产揄拍国内精品对白| 欧美freesex交免费视频| 亚洲图片在区色| 欧美精品成人91久久久久久久| 一区二区三区福利| 国一区二区在线观看| 亚洲影视在线播放| 在线观看福利一区| 国产精品久久久久婷婷| 狼人社综合社区| 亚洲先锋成人| 国产精品久久久久9999吃药| 一区二区三区视频免费在线观看| 国产精品一区2区| 欧美日本视频在线| 久久九九免费视频| 在线亚洲激情| 亚洲经典视频在线观看| 国产精品一区二区欧美| 欧美精品偷拍| 蜜桃av噜噜一区| 性欧美大战久久久久久久久| 99精品国产一区二区青青牛奶| 黄色成人在线网址| 美腿丝袜亚洲色图| 久久精品72免费观看| 午夜一区不卡| 亚洲欧美色婷婷| 在线视频精品一| 亚洲精品一区二区在线| 黄色一区二区三区| 国产一区二区日韩| 国产精品久久网| 欧美日韩在线高清| 欧美日韩视频在线| 欧美国产日本高清在线| 免费成人av在线| 麻豆国产精品777777在线| 久久精品一区二区三区不卡| 欧美影视一区| 久久国产精品久久久久久| 亚洲男女自偷自拍| 性亚洲最疯狂xxxx高清| 怡红院av一区二区三区| 国产在线精品成人一区二区三区| 国产精品一区二区黑丝| 国产女人精品视频| 国产一区二区三区的电影 | 久久久久久久久久看片| 久久久久久亚洲精品杨幂换脸| 久久高清国产| 一本到高清视频免费精品| 99视频精品全国免费| 亚洲一区二区在线观看视频| 亚洲一区二区三区四区中文| 午夜精品久久久久久久| 欧美在线不卡| 久久综合网色—综合色88| 欧美激情免费在线| 久久精品国产久精国产一老狼| 久久国产精品黑丝| 欧美gay视频激情| 欧美视频在线观看| 国产美女一区二区| 海角社区69精品视频| 亚洲人成免费| 欧美一区二区大片| 欧美激情成人在线视频| 欧美日韩在线免费| 韩国av一区二区三区| 亚洲精品黄色| 久久精品官网| 欧美日韩国产美女| 激情综合在线| 亚洲欧美变态国产另类| 久久亚洲视频| 国产精品毛片va一区二区三区|