示例#1
0
文件: _reason.go 项目: herokai/escher
func (Reason) Materialize() think.Reflex {
	reflex, eye := faculty.NewEye("Belief", "Observation", "Theory") // Create to (yet unattached) memory endpoints.
	go func() {
		f := &reason{} // Create the object that will handle the cognition of the reason reflex
		f.x = eye.Focus(f.ShortCognize)
	}()
	return reflex
}
示例#2
0
func (Reason) Materialize() think.Reflex {
	reflex, m := faculty.NewEye("Belief", "Observation", "Theory") // Create to (yet unattached) memory endpoints.
	SpawnReason(m)
	return reflex
}