Changes between Version 5 and Version 6 of COP3402Fall2011
- Timestamp:
- 08/30/11 14:36:13 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
COP3402Fall2011
v5 v6 1 == COP3402 Fall 2011 -- Charles E. Hughes == 2 '''TA''': Steven Zittrower [[BR]] '''Grader''': Wenhui Li [[BR]] 1 3 2 == COP3402 Fall 2011 -- Charles E. Hughes == 3 '''TA''': Steven Zittrower [[BR]] 4 '''Grader''': Wenhui Li [[BR]] 5 6 '''Office Hours''': Thursday 3-5PM or by appointment. 4 '''Office Hours''': HEC 250 - Thursday 3-5PM or by appointment. 7 5 8 6 == Lab Notes == 9 10 7 == Final Project == 11 12 8 == Assignments == 13 14 9 == Helpful Pages == 15 16 - [wiki:COP3402Spring2011/InstallEclipseCpp Installing Eclipse for C/C++] 17 - [wiki:COP3402Spring2011/CompilerSettings Required Compiler Settings for all submitted Programs] 10 * [wiki:COP3402Spring2011/InstallEclipseCpp Installing Eclipse for C/C++] 11 * [wiki:COP3402Spring2011/CompilerSettings Required Compiler Settings for all submitted Programs] 18 12 19 13 == Tools == 14 * Flex: [http://gnuwin32.sourceforge.net/packages/flex.htm Download for Windows] and [http://flex.sourceforge.net/manual/ Manual] 15 * Bison: [http://gnuwin32.sourceforge.net/packages/bison.htm Download for Windows] and [http://www.gnu.org/software/bison/manual/bison.html Manual] ('''NOTE''': Make sure to install Bison in a path without any spaces, e.g. `C:\GnuWin32`) 20 16 21 - Flex: [http://gnuwin32.sourceforge.net/packages/flex.htm Download for Windows] and [http://flex.sourceforge.net/manual/ Manual] 22 - Bison: [http://gnuwin32.sourceforge.net/packages/bison.htm Download for Windows] and [http://www.gnu.org/software/bison/manual/bison.html Manual] 23 ('''NOTE''': Make sure to install Bison in a path without any spaces, e.g. {{{C:\GnuWin32}}}) 24 25 - [http://www.supereasyfree.com/software/simulators/compilers/principles-techniques-and-tools/parsing-simulator/parsing-simulator.php Parsing Simulator] : For generating FIRST and FOLLOW Sets as well as LL(1) and LR parsing tables 26 - [http://www.swisseduc.ch/compscience/exorciser/ Exorciser] : Generator of exercises in the theory of computing. Of interest for us the CKY parsing implementation. 17 * [http://www.supereasyfree.com/software/simulators/compilers/principles-techniques-and-tools/parsing-simulator/parsing-simulator.php Parsing Simulator] : For generating FIRST and FOLLOW Sets as well as LL(1) and LR parsing tables 18 * [http://www.swisseduc.ch/compscience/exorciser/ Exorciser] : Generator of exercises in the theory of computing. Of interest for us the CKY parsing implementation.