1
2
3
4 package net.sf.bddbddb;
5
6 import java.util.List;
7
8 /***
9 * LSInferenceRule
10 *
11 * @author jwhaley
12 * @version $Id: LSInferenceRule.java 497 2005-04-06 17:03:47Z joewhaley $
13 */
14 public class LSInferenceRule extends InferenceRule {
15 /***
16 * @param solver
17 * @param top
18 * @param bottom
19 */
20 public LSInferenceRule(Solver solver, List top, RuleTerm bottom) {
21 super(solver, top, bottom);
22
23 }
24
25 /***
26 * @param solver
27 * @param top
28 * @param bottom
29 * @param id
30 */
31 public LSInferenceRule(Solver solver, List top, RuleTerm bottom, int id) {
32 super(solver, top, bottom, id);
33
34 }
35
36
37
38
39 public boolean update() {
40
41 return false;
42 }
43
44
45
46
47 public void reportStats() {
48
49 }
50 }