Giter VIP home page Giter VIP logo

c4's People

Contributors

neilconway avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

c4's Issues

count aggregate segfaults when counting strings

C4 seems to segfault when using the count<> aggregate to count string values.

The program

define(foo, {string, string});
define(foo_cnt, {string, int});
foo("a", "A");
foo_cnt(X, count<Y>) :- foo(X, Y);

crashes c4i:

$ gdb c4i
Reading symbols for shared libraries ......... done
(gdb) run test2.ded
Starting program: c4i/c4i test2.ded
Reading symbols for shared libraries ++++++++................................................. done
Local address = tcp:***.eecs.berkeley.edu:63619
c4: Using base_dir = /Users/joshrosen/c4_home/tcp_63619

Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_INVALID_ADDRESS at address: 0x0000000000000005
[Switching to process 56517 thread 0x40b]
0x0000000100017a3c in string_pin (s=0x1) at libc4/types/datum.c:200
200     s->refcount++;
(gdb) bt
#0  0x0000000100017a3c in string_pin (s=0x1) at libc4/types/datum.c:200
#1  0x0000000100017a1b in datum_copy (in={b = true, c = 1 '\001', i8 = 1, d8 = 4.9406564584124654e-324, s = 0x1}, type=5 '\005') at libc4/types/datum.c:217
#2  0x000000010000c675 in emit_agg_output (group=0x100843bd0, agg_op=0x100843590) at libc4/operator/agg.c:97
#3  0x000000010000c439 in create_agg_group (t=0x100828b90, agg_op=0x100843590) at libc4/operator/agg.c:154
#4  0x000000010000c240 in agg_do_insert (t=0x100828b90, agg_op=0x100843590) at libc4/operator/agg.c:244
#5  0x000000010000ba6d in agg_invoke (op=0x100843590, t=0x100828b90) at libc4/operator/agg.c:27
#6  0x000000010000cf8e in project_invoke (op=0x100843988, t=0x100828b78) at libc4/operator/project.c:14
#7  0x0000000100012e8e in route_tuple_buf (router=0x100812c58, buf=0x100812d60, is_delete=false) at libc4/router.c:107
#8  0x000000010001287e in router_do_fixpoint (router=0x100812c58) at libc4/router.c:133
#9  0x0000000100012a95 in drain_queue (router=0x100812c58) at libc4/router.c:281
#10 0x000000010001279e in router_main_loop (router=0x100812c58) at libc4/router.c:232
#11 0x0000000100012ffd in runtime_thread_main (thread=0x10080bc10, data=0x1001064c0) at libc4/runtime.c:159
#12 0x00007fff90b48772 in _pthread_start ()
#13 0x00007fff90b351a1 in thread_start ()

"Failed to find variable" error that's dependent on ordering of negated body predicates

The following program produces the error

ERROR: Failed to find variable NRESERVED, at /Users/joshrosen/Documents/boom/c4/src/libc4/planner/plan_expr.c:166

when run with c4i:

define(prepared, {string, int});
define(good, {string, int});
define(begin, {string});
define(clock, {int});

good(X, NRESERVED) :-
    begin(X),
    notin prepared(X, NRESERVED),
    clock(NRESERVED);

However, everything works fine if I rewrite the rule body such that the negated predicate appear at the end of the rule:

good(X, NRESERVED) :-
    begin(X),
    clock(NRESERVED),
    notin prepared(X, NRESERVED);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.