ejschwartz commited on
Commit
97eed3e
·
1 Parent(s): 4fd4805
Files changed (1) hide show
  1. main.py +1 -6
main.py CHANGED
@@ -3,12 +3,7 @@ import subprocess
3
  import tempfile
4
  from pathlib import Path
5
 
6
- EXAMPLE_CODE = """void f()
7
- {
8
- T v = 0;
9
- v->value = 42;
10
- v->next = v;
11
- }"""
12
 
13
  def run_psychec(c_code: str):
14
  """Run PsycheC type inference on the provided C code."""
 
3
  import tempfile
4
  from pathlib import Path
5
 
6
+ EXAMPLE_CODE = open("/workspace/psychec/test.c", "r").read()
 
 
 
 
 
7
 
8
  def run_psychec(c_code: str):
9
  """Run PsycheC type inference on the provided C code."""