Auto Topic: disabled

auto_disabled | topic

Coverage Score
1
Mentioned Chunks
7
Mentioned Docs
2

Required Dimensions

definitionpros_cons

Covered Dimensions

definitionpros_cons

Keywords

disabled

Relations

SourceTypeTargetW
Auto Topic: disabledCO_OCCURSAuto Topic: self5
Auto Topic: configCO_OCCURSAuto Topic: disabled5
Auto Topic: defCO_OCCURSAuto Topic: disabled5
Auto Topic: disabledCO_OCCURSAuto Topic: square_size4
Auto Topic: disabledCO_OCCURSAuto Topic: pack3
Auto Topic: disabledCO_OCCURSAuto Topic: row3
Auto Topic: disabledCO_OCCURSAuto Topic: rows3
Auto Topic: disabledCO_OCCURSAuto Topic: fill3

Evidence Chunks

SourceConfidenceMentionsSnippet
assignments
CIS5210-Assignments/M2/homework2_gui.py
0.614... '')) self.__next_btn = tk.Button(self.__buttons, text="Next move", command=self.__next, state=tk.NORMAL if self.__solutions else tk.DISABLED) self.__next_btn.pack() self.__buttons.pack(side=tk.BOTTOM) def __next(self): fr, to = self.__solutions[self.__cur_sol] if fr not in self. ...
assignments
CIS5210-Assignments/M2/homework2_gui.py
0.572... ueens: self.__canvas.delete(self.__queens.pop()) self.__cur_sol += delta if self.__cur_sol <= 0: self.__prev_btn.config(state=tk.DISABLED) else: self.__prev_btn.config(state=tk.NORMAL) if self.__cur_sol + 1 >= len(self.__solutions): self.__next_btn.config(state=tk.DISABLED) if de ...
assignments
CIS5210-Assignments/M2/homework2_gui.py
0.572parent=self) self.__next_btn.config(state=tk.DISABLED) return disk, label = self.__disks[to] = self.__disks.pop(fr) self.__canvas.move(disk, (to - fr) * SQUARE_SIZE, 0) self.__canvas.move(label, (to - fr) * SQUARE_SIZE, 0) if self.__arrow: self.__canvas.delete(self.__arrow) self. ...
textbook
Artificial-Intelligence-A-Modern-Approach-4th-Edition.pdf
0.551... nterfaces (Lebedev and Nicolelis, 2006) for both Brain–machine interface sensing and motor control not only promises to restore function to disabled individuals, but also sheds light on many aspects of neural systems. A remarkable finding from this work is that the brain is able t ...
textbook
Artificial-Intelligence-A-Modern-Approach-4th-Edition.pdf
0.551... cal changes, consider Figure 13.23(a), which depicts a slightly modified version of the lawn sprinkler story of Figure 13.15. To represent a disabled sprinkler, for example, we simply delete from the network all links incident to the Sprinkler node. To represent a lawn covered by ...
assignments
CIS5210-Assignments/M2/homework2_gui.py
0.551... ) def __solve_lock(self): self.__solving = True for child in self.__buttons.winfo_children(): child.config(state=tk.DISABLED) def __solve_finish(self): self.__solving = False for child in self.__buttons.winfo_children(): child.config(state=tk.NORMAL)
assignments
CIS5210-Assignments/M2/homework2_gui.py
0.551d in self.__buttons.winfo_children(): child.config(state=tk.DISABLED) def __solve_finish(self): self.__solving = False for child in self.__buttons.winfo_children(): child.config(state=tk.NORMAL) def __update(self): self.__canvas.delete(tk.ALL) board = self.__puzzle.get_board() fo ...