Skip to content

Commit 38b2bb2

Browse files
committed
Python: Add testfile with regressions
1 parent 6df3b8d commit 38b2bb2

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
| pointsto_regressions.py:15:18:15:21 | ControlFlowNode for self | pointsto_regressions.py:19:9:19:12 | ControlFlowNode for self |
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# This file contains snippets from snapshots that displayed interesting results for `pointsto.ql`.
2+
3+
class Chatbot:
4+
"""
5+
Main class which launch the training or testing mode
6+
"""
7+
8+
class TestMode:
9+
""" Simple structure representing the different testing modes
10+
"""
11+
ALL = 'all'
12+
INTERACTIVE = 'interactive' # The user can write his own questions
13+
DAEMON = 'daemon' # The chatbot runs on background and can regularly be called to predict something
14+
15+
def __init__(self):
16+
"""
17+
"""
18+
# Model/dataset parameters
19+
self.args = None

0 commit comments

Comments
 (0)