Browse Source

Added a <= corpus to cms_and_ifs.py

master
Josh Hofing 12 years ago
parent
commit
19609c661e
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      corpora/cmps_and_ifs.py

+ 5
- 1
corpora/cmps_and_ifs.py View File

@@ -6,4 +6,8 @@ def f2(a):
return True
return False

corpus = [f1, f2]
def f3(a):
if a <= 20:
return True
return False
corpus = [f1, f2, f3]

Loading…
Cancel
Save