Skip to content

ggorlen/rene

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rene

What?

This is a pseudocode to Python 3 transpiler for the OMSCS course CS6515 Graduate Algorithms.

Why?

CS6515 requires you to use 1-based indexing and a heavily-constrained pseudocode to write dynamic programming problems on homework and exams. Many students practice DP problems in Python and lose points on homework and exams due to use of forbidden syntax and language features, lack of fluency with the pseudocode or 1-indexing or simply ignoring requirements.

Rene transpiles the pseudocode to Python, enforcing the correct syntax.

Name

This language is named Rene after a frog that appeared in some homework problems when I took the course. Everyone loves Rene.

Syntax

See lcs.rene for example code and rene.lark for the grammar.

Rene is a heavily constrained Python-like (whitespace significant) toy language that attempts to disallow any syntax or features that aren't allowed on homework or exams. Notably:

  • The available tools are variables, numbers, fixed-size arrays, loops, conditions and function calls.
  • You can call plain functions like max and print but not object methods like math.floor.
    • If you need a standard library function, the Python syntax from math import ceil, floor can be used.
    • It's a good idea to restrict your function calls to those in the spirit of pseudocode, max, min, abs and so forth. len, print, sum and other builtins are available, but should only be used for debugging and would likely cost you points if used in a submission.
  • Instead of len(iterable), add explicit length variables to the function header.
  • Instead of for i in range(0, n):, use for i = 1 -> n:, where n is inclusive and transpiles to for i in range(1, n + 1).
  • Instead of dicts or lists, use fixed-size arrays.
  • Instead of augmented assignments like += and unary operations like ++, use foo = foo + 1.
  • Instead of and and or, use && and ||.
  • Only / is allowed for division. // is a comment, not floor division.
  • 4-space indentation is required.

Some syntactical restrictions are due to my own ignorance. Please PR if you can fix these:

  • Blank lines are allowed, but the spaces in the lines need to match the current indentation level.
  • else if, elif and elsif can be written as elseif in this language. I'd prefer if the grammar supported else if which is safer for homework submissions. That said, you probably won't need to use this much.

There is no semantic analyzer in Rene, only parsing errors, so it's up to you to debug in Python, which will mostly look like the Rene code other than line numbers and a few extra array conversion calls.

Arrays and 1-indexing

Rene uses an Array type as a wrapper for making NumPy arrays. Array prepends an extra row on every dimension, giving you the option to index at 0 (for base cases) and enabling 1-based indexing otherwise.

There are two function calls that make 1-indexed arrays:

  • Array(*dimensions) (alias: Table): this array is uninitialized; write explicit loops to set values. INFINITY and NEGATIVE_INFINITY are available for setting max/min integer values and comparisons.
  • array_from_iterable(it): converts an iterable to a 1-indexed iterable. You shouldn't need to call this; the transpiler will insert calls on your behalf for any Array parameters. Currently, Rene doesn't generate code to stop you from illegally accessing index 0 on these parameters since it's the same structure as arrays/tables, so take care.

Rene does support strings but they're not 1-indexed. You could call s = array_from_iterable(s), but literal strings are mainly available for debugging messages rather than DP logic. Use an Array parameter if your function receives a string.

Usage

Dependencies

Python 3, Lark and NumPy.

To install, clone this repo and run

pip install -r requirements.txt

To stdout

python3 rene.py lcs.rene

To file

python3 rene.py lcs.rene lcs.py

As a module

import rene

# from source file to string
py_code = rene.generate_code(source_file="lcs.rene")

# from source file to out file and string
py_code = rene.generate_code(source_file="lcs.rene", out_file="lcs.py")

# from source code string to out file and string
py_code = rene.generate_code(source_string='print("hello")\n', out_file="hello.py")

# from source code string to string
py_code = rene.generate_code(source_string='print("hello")\n')

Using a test harness

If you want to run your code in a test harness, see lcs_test.py and run it with python3 lcs_test.py. It might be smart to write your transpiled Python code to file or print it when you run tests so you can look at it to debug errors (yes, this is not fancy).

Leetcode

Not really intended, but easy enough. Leetcode has NumPy, so you can run python3 rene.py lcs.rene and pipe to clipboard, paste into Leetcode's editor and call your solution from their stub:

class Solution:
    def longestCommonSubsequence(self, text1: str, text2: str) -> int:
        return lcs(len(text1), len(text2), text1, text2)

There are command-line submission tools for LC that could automate this. Efficiency might be impaired due to importing NumPy without taking advantage of vectorized operations.

Testing Rene

Coming soon

TODO

  • add tests
  • improve comment and multiline string support
  • make into a package for easier install?
  • support unary minus?
  • support named parameters for function calls?

Disclaimer

No guarantees expressed or implied. Use this software entirely at your own risk.

Issues and PRs

Yes, please and thanks!

About

Toy language transpiler for CS6515

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages