15:59:41 RRSAgent has joined #rif 15:59:41 logging to http://www.w3.org/2009/02/20-rif-irc 16:00:43 Team_(rif)15:49Z has now started 16:00:45 +[NRCC] 16:00:54 ChrisW has joined #rif 16:01:11 zakim, what is the code? 16:01:11 the conference code is 7431 (tel:+1.617.761.6200 tel:+33.4.89.06.34.99 tel:+44.117.370.6152), ChrisW 16:01:13 zakim, [NRCC] is me 16:01:13 +Harold; got it 16:01:16 brt 16:01:34 +Sandro 16:01:36 -Sandro 16:01:36 +Sandro 16:02:58 http://www.w3.org/People/Sandro/webcam 16:03:46 havin gphone probs today 16:05:02 +ChrisW 16:05:15 zakim, who is here? 16:05:15 On the phone I see Harold, Sandro, ChrisW 16:05:16 On IRC I see ChrisW, RRSAgent, Harold, MoZ, sandro, trackbot, Zakim 16:06:51 BAREWORDS: a "c identifier" 16:09:53 (* "http://sample.org"^^rif:iri pd[dc:publisher -> "http://www.w3.org/"^^rif:iri 16:10:08 (* "http://sample.org"^^rif:iri _pd[dc:publisher -> "http://www.w3.org/"^^rif:iri 16:10:50 Harold: yeah, I agree, I think the draft has a syntax error, and it should be "_pd" or anonymous 16:11:07 _[ foo->bar ] 16:11:43 standalone "_" for anonymous terms, useful for frames. 16:14:29 Addon: local declaration so you don't need _ 16:14:39 addon: don't need ? when you quantify a variable. 16:17:27 p(a b (c+d) e(c+d) f (c+d)) q(a b) 16:17:39 p(a, b, (c+d), e(c+d), f, (c+d)); q(a b) 16:17:43 p(a, b, (c+d), e(c+d), f, (c+d)); q(a, b) 16:17:57 p(a, b, (c+d), e(c+d), f, (c+d)). q(a, b). 16:18:27 separators vs space-sensitive 16:21:47 Harold: I would not be opposed to introducing separators, making it more prolog-like 16:22:30 Harold: I prefer separators to paying attention to whitespace before lparen. 16:23:37 f (c+d) should not mean f +(c d) 16:25:25 _f(_c+_d) 16:25:38 _f(_c+ _d) 16:26:33 _f(my:foo+my:bar) 16:27:13 _f(my:foo + my:bar) 16:27:45 Option 1: tell people to use lots of whitespace 16:28:09 Option 2: restrict the characters in QNAMES/CURIES/URIS -- tell people to to use <...> when necessary 16:28:49 Prefix(cpt http://example.com/concepts#) 16:30:13 _f(17-12) 16:30:51 _f(_17-12) 16:30:53 General-sense: Option 1 16:31:34 _f(_17-12) has no subtraction in it. 16:31:57 ' + ' 16:32:21 _f(?XX-12) 16:32:47 when it's ambiguous we assume it's it an identifier? VS Always require space..... 16:33:28 _f(?XX - 12) 16:33:37 sense: require space always, because otherwise it's too easy to get it wrong. 16:33:54 sense: require space around infix operators always, because otherwise it's too easy to get it wrong. 16:34:28 "foo \" bar" 16:34:41 "foo \u0034 bar" 16:34:56 # foo 16:35:05 /* foo */ 16:36:12 (* _some_new_foo[dc:comment->"My Comment"] *) 16:36:18 #My Comment 16:37:29 We suggest to use Dublin Core, RDFS, and OWL properties for metadata, along the lines of Section 7.1 of [OWL-Reference]-- specifically owl:versionInfo, rdfs:label, rdfs:comment, rdfs:seeAlso, rdfs:isDefinedBy, dc:creator, dc:description, dc:date, and foaf:maker. 16:38:14 p(a,b) :- 16:38:14 q(a) # not really 16:38:53 p(a,b) :- 16:38:53 q(a, b, # is this about b? or c? 16:38:53 c) 16:39:41 problems -- you have to invent object identifiers (could us "_") 16:40:07 http://www.w3.org/2005/rules/wiki/BLD#RIF-BLD_Annotations_in_the_Presentation_Syntax 16:40:31 (* ... *) a+b the meta is about a 16:40:59 ( (* comment *) FORALL p :- b ) 16:41:26 chris: I don't like comments that just go away in processing. so comments should be metadata. 16:42:54 ( 16:42:57 #comment 16:43:01 forall ... 16:43:02 ) 16:43:17 # comment about rule 16:43:17 p(a,b) :- # comment about p(a,b) 16:43:17 q(a, b, # comment about b 16:43:17 c) # comment about q(a,b,c) 16:44:07 #-comments are syntactic sugar for dc:comment metadata 16:44:22 on an anonymous local comment 16:44:24 rdfs:comment 16:45:22 12.34 16:45:52 1.23 16:46:11 1.23e+00 16:46:50 xsd:double — IEEE 64-bit floating-point 16:47:33 Valid values include: 123.456, +1234.456, -1.2344e56, -.45E-6, INF, -INF, or NaN. according to http://books.xmlschemata.org/relaxng/ch19-77065.html 16:48:03 123.456 could also be a decimal. 16:48:13 -1.2344e56 could also be a float 16:48:57 chris: 1.23 is a decimal. 1.23e is a double. for float using ^^ 16:49:05 okay. 16:49:39 12.3d for decimal? 16:51:23 sandro: throw an error for 12.3 saying it's ambiguous. 16:51:54 double values have a lexical representation consisting of a mantissa followed, optionally, by the character "E" or "e", followed by an exponent. The exponent ·must· be an integer. The mantissa must be a decimal number. The representations for exponent and mantissa must follow the lexical rules for integer and decimal. If the "E" or "e" and the following exponent are omitted, an exponent value of 0 is assumed. 16:52:51 The canonical representation for double is defined by prohibiting certain options from the Lexical representation (§3.2.5.1). Specifically, the exponent must be indicated by "E". Leading zeroes and the preceding optional "+" sign are prohibited in the exponent. If the exponent is zero, it must be indicated by "E0". For the mantissa, the preceding optional "+" sign is prohibited and the decimal point is required. Leading and trailing zeroes are prohibited subject 16:54:32 sandro: require trailing d,e,f (but look elsewhere for ideas, too.) 16:55:20 (Sandro's 3-letter subalphabet) 16:55:20 p(b=1) 16:55:46 p(b < 1) 16:57:30 NAU syntax....? 16:57:35 p(b->1) 16:57:40 p(b::1) 16:57:44 p(b :: 1) 16:57:45 p(b : 1) 16:57:49 p(b := 1) 16:58:10 p(b -> 1, c->c) 16:58:18 p(b -> 1, c -> c) 16:59:06 p{ b: 1} 16:59:38 should NAU use the same operator as frames? 16:59:47 chris: no no no! 17:00:19 chris: eliminate arrow. (use only for implication) 17:01:00 p(b := 1, f[ color :: red ]) 17:01:15 p(b := 1, bb := f[ color :: red ]) 17:01:26 chris: that would be fine. 17:01:46 chris: lisp used a parens pair. 17:02:10 p( (b 1) (bb f[ color :: red ]) ) 17:02:29 ':=' looks too much like re-assignment. 17:03:15 b := 1 b := 2 vs. b := 2 b := 1 17:03:59 chris: I'm okay with: p(b : 1, bb := f[ color :: red ]) 17:04:28 p(b : 1, bb := f[ color : red ]) 17:04:42 p(b : 1, bb : f[ color : red ]) 17:05:27 chris: I'm okay with that. 17:06:03 a->b 17:06:08 a- > b 17:06:45 p(b : 1, bb : f[ color red, name "sandro"]) 17:07:14 chris: interesting.... 17:07:49 p(b : 1, bb : f[ color red]) 17:07:52 p(b : 1, bb : f[color red]) 17:08:18 p(b : 1, bb : f[ color red; name "sandro"]) 17:08:30 (that's n3 semicolon) 17:09:13 chris: for me, the semicolon is too strong a break (think java/C) 17:10:45 chris: my favorite is colon 17:10:58 chris: my favorite is colon (for both NAU and frames.) 17:11:25 p(b : 1, bb : f[color : red, name : "sandro"]) 17:12:01 p(b :: 1, bb :: f[color :: red, name :: "sandro"]) 17:12:29 harold: nicer 17:12:34 chris: fine with me. 17:12:48 double colon for both NAUs and Frame slots. 17:12:58 sandro: I prefer colon, but..... 17:13:45 trying without spaces: p(b::1, bb::f[color::red, name::"sandro"]) 17:14:12 RRSAgent, pointer? 17:14:12 See http://www.w3.org/2009/02/20-rif-irc#T17-14-12 17:14:26 agreed: double-colon for NAU and frames. 17:15:55 if p(a, b, f[foo::bar]) then .... 17:16:36 if p(a,b,XX) and XX[foo::bar] then .... 17:16:50 if p(a,b,f) and f[foo::bar] then .... 17:17:39 agreed: they're not in bld, but they're nice.... high priority extension 17:18:11 ATOMIC ::= IRIMETA? (Atom | Equal | Member | Subclass | Frame) 17:18:36 chris: my removed? 17:18:54 harold: we had a syntactic de-sugaring process. 17:19:02 sandro: I think we thought it was too complicated.... 17:20:30 sandro:be careful about anonymous frames.... 17:20:46 -ChrisW 17:27:22 An Import indicates the location of a document to be imported and an optional profile. 17:28:42 issue-67? 17:28:42 ISSUE-67 -- need string predicates string-less-than, etc. (waiting on PS) -- OPEN 17:28:42 http://www.w3.org/2005/rules/wg/track/issues/67 17:29:48 if a > b then 17:30:42 I think it ought to have an all-types-compare builtin.... 17:33:47 This isn't a PS quesiton is it? How to you convert from a language with polymorphic operators? write an expression with lots of guards? 17:34:16 -Sandro 17:34:19 -Harold 17:34:20 Team_(rif)15:49Z has ended 17:34:21 Attendees were Harold, Sandro, ChrisW 17:36:23 RRSAgent, pointer? 17:36:23 See http://www.w3.org/2009/02/20-rif-irc#T17-36-23 17:36:46 RRSAgent, make record public