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
| Source | Type | Target | W |
|---|---|---|---|
| Auto Topic: disabled | CO_OCCURS | Auto Topic: self | 5 |
| Auto Topic: config | CO_OCCURS | Auto Topic: disabled | 5 |
| Auto Topic: def | CO_OCCURS | Auto Topic: disabled | 5 |
| Auto Topic: disabled | CO_OCCURS | Auto Topic: square_size | 4 |
| Auto Topic: disabled | CO_OCCURS | Auto Topic: pack | 3 |
| Auto Topic: disabled | CO_OCCURS | Auto Topic: row | 3 |
| Auto Topic: disabled | CO_OCCURS | Auto Topic: rows | 3 |
| Auto Topic: disabled | CO_OCCURS | Auto Topic: fill | 3 |
Evidence Chunks
| Source | Confidence | Mentions | Snippet |
|---|---|---|---|
assignments CIS5210-Assignments/M2/homework2_gui.py | 0.61 | 4 | ... '')) 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.57 | 2 | ... 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.57 | 2 | parent=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.55 | 1 | ... 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.55 | 1 | ... 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.55 | 1 | ... ) 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.55 | 1 | d 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 ... |