knowledge-management

How do I define relation properties in OWL?

风流意气都作罢 提交于 2021-02-19 02:12:59
问题 In my ontology I have individuals "pic Joan" which is an instance of concept "mountain" and "port Cerbère" which is an instance of concept "village". I have the relation "dominates" going from "pic Joan" to "port Cerbère" (in the sense that the mountain is perceived as being close and above the village, and hence "dominates it"). But in fact, I need to represent the information "pic Joan dominates port Cerbère at a distance of 1.5 miles NW". So, logically, I would need to attach to the

How do I define relation properties in OWL?

此生再无相见时 提交于 2021-02-19 02:10:22
问题 In my ontology I have individuals "pic Joan" which is an instance of concept "mountain" and "port Cerbère" which is an instance of concept "village". I have the relation "dominates" going from "pic Joan" to "port Cerbère" (in the sense that the mountain is perceived as being close and above the village, and hence "dominates it"). But in fact, I need to represent the information "pic Joan dominates port Cerbère at a distance of 1.5 miles NW". So, logically, I would need to attach to the

What tools do you use to share information among developers in your group?

ⅰ亾dé卋堺 提交于 2019-12-20 18:51:44
问题 We already have mentoring, share information among each other, and hold regular technical sessions. However, we want these things written down, for the record and for new team members in the future. Right now we're at around 30 developers. We're thinking about an internal blog and wiki. While it would be great to share stuff on public blogs (and maybe even have official public developer blogs), for now we want to keep it internal. Our shop does mostly bespoke programming, and not products, so

How to do a logical or in CLIPS?

前提是你 提交于 2019-12-13 03:08:54
问题 Updated code: where to add the check for ?f<-(practice-is-on-off OFF) (defrule no-practice "Rules for when practice cannot be held" (or ?f <- (practice (number-of-paddlers ?p&:(< ?p 6))) ?f <- (practice (number-of-coaches ?c&:(< ?c 1)))) => (modify ?f (practice-is-on-off OFF))) ;end I am defining a template in CLIPS and I am using logical operator OR. However, when I load the template, it is throwing an error saying [TMPLTDEF1] Invalid slot or not defined in corresponding deftemplate practice

Tracking Useful Information

元气小坏坏 提交于 2019-12-06 21:13:23
问题 What do the clever programmers here do to keep track of handy programming tricks and useful information they pick up over their many years of experience? Things like useful compiler arguments, IDE short-cuts, clever code snippets, etc. I sometimes find myself frustrated when looking up something that I used to know a year or two ago. My IE favorites probably represent a good chunk of the Internet in the late 1990s, so clearly that isn't effective (at least for me). Or am I just getting old?

Tracking Useful Information

北城以北 提交于 2019-12-05 01:08:05
What do the clever programmers here do to keep track of handy programming tricks and useful information they pick up over their many years of experience? Things like useful compiler arguments, IDE short-cuts, clever code snippets, etc. I sometimes find myself frustrated when looking up something that I used to know a year or two ago. My IE favorites probably represent a good chunk of the Internet in the late 1990s, so clearly that isn't effective (at least for me). Or am I just getting old? So.. what do you do? ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ Two Things I do: I blog about it - this allows me

What is the best way to remember technical knowledge in the organization

落花浮王杯 提交于 2019-12-03 05:59:01
问题 Do we use a company wiki? how about you save the technical documents as part of source control and then have links to them from various source files (to understand how this works see article ... in directory...) what are the pros and cons of these and other methods? any good tools for this purpose? If you recommend a wiki, what Wikis would you recommend to use? internal? hosted? free? paid? 回答1: I'd recommend using a wiki. It works extremely well as a central documentation source and has

What is the best way to remember technical knowledge in the organization

柔情痞子 提交于 2019-12-02 19:27:16
Do we use a company wiki? how about you save the technical documents as part of source control and then have links to them from various source files (to understand how this works see article ... in directory...) what are the pros and cons of these and other methods? any good tools for this purpose? If you recommend a wiki, what Wikis would you recommend to use? internal? hosted? free? paid? I'd recommend using a wiki. It works extremely well as a central documentation source and has built-in revision control. Also you can reference the docs in the code via URLs. People are the most effective

8-puzzle has a solution in prolog using manhattan distance

不羁岁月 提交于 2019-11-27 15:25:03
问题 The 8-puzzle will be represented by a 3x3 list of lists positions where the empty box will be represented by the value 9, as shown below: [[9,1,3],[5,2,6],[4,7,8]] Possibility Solution: Only half of the initial positions of the 8-puzzle are solvable. There is a formula that allows to know from the beginning if you can solve the puzzle.To determine whether an 8-puzzle is solvable, for each square containing a value N is calculated how many numbers less than N there after the current cell. For