File: load-py.lp

package info (click to toggle)
gringo 4.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,260 kB
  • ctags: 10,755
  • sloc: cpp: 55,049; python: 629; yacc: 569; sh: 124; makefile: 23
file content (15 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#script(python)

def main(prg):
    print("#const y={0}".format(prg.get_const("y")))
    prg.load("program.lp")
    print("#const y={0}".format(prg.get_const("y")))
    print("#const x={0}".format(prg.get_const("x")))
    prg.add("base", [], "#const x=10. b.")
    print("#const x={0}".format(prg.get_const("x")))
    prg.ground([("base", [])])
    prg.solve()

#end.

c.