1 / 20

Artificial Intelligence Lecture No. 26

Artificial Intelligence Lecture No. 26. Dr. Asad Ali Safi ​ Assistant Professor, Department of Computer Science,  COMSATS Institute of Information Technology (CIIT) Islamabad, Pakistan. Summary of Previous Lecture. If...then...else Function While loop Functions Loop-for-count

lazar
Download Presentation

Artificial Intelligence Lecture No. 26

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Artificial IntelligenceLecture No. 26 Dr. Asad Ali Safi ​ Assistant Professor, Department of Computer Science,  COMSATS Institute of Information Technology (CIIT) Islamabad, Pakistan.

  2. Summary of Previous Lecture • If...then...else Function • While loop • Functions • Loop-for-count • Defining functions

  3. Today’s Lecture • Defglobal Construct • File reading writing

  4. Defglobal Construct • With the defglobal construct, global variables can be defined, set, and accessed within the CLIPS environment. • Global variables can be accessed as part of the pattern- matching process, but changing them does not invoke the pattern matching process. • The bind function is used to set the value of global variables. • Global variables are reset to their original value when the reset command is performed or when bind is called for the global with no values. • Global variables can be removed by using the clear command or the undefglobal command.

  5. Syntax (defglobal [<defmodule-name>] <global-assignment>*) <global-assignment> ::= <global-variable> = <expression> <global-variable> ::= ?*<symbol>* • There may be multiple defglobal constructs and any number of global variables may be defined in each defglobal statement. • The optional <defmodule- name> indicates the module in which the defglobals will be defined. If none is specified, the globals will be placed in the current module.

  6. Global variables may be used anyplace that a local variable could be used (with two exceptions). • Global variables may not be used as a parameter variable for a deffunction, defmethod, or message-handler. • Global variables may not be used in the same way that a local variable is used on the LHS of a rule to bind a value.

  7. Therefore, the following rule is illegal (fact ?*x*) =>) • Note that this rule will not necessarily be updated when the value of ?*x* is changed. For example, if ?*x* is 4 and the fact (fact 3) is added, then the rule is not satisfied. If the value of ?*x* is now changed to 2, the rule will not be activated.

  8. File • Open • The open function allows a user to open a file from the RHS of a rule and attaches a logical name to it. • This function takes three arguments: • (1) the name of the file to be opened; • (2) the logical name which will be used by other CLIPS I/O functions to access the file; and • (3) an optional mode specifier.

  9. The mode specifier must be one of the following strings: • "r" read access only • "w" write access only • "r+" read and write access • "a" append access only

  10. Syntax (open <file-name> <logical-name> [<mode>]) • The <file- name> must either be a string or symbol and may include directory specifiers. • If a string is used, the backslash (\) and any other special characters that are part of <file- name> must be escaped with a backslash. • The open function returns TRUE if it was successful, otherwise FALSE.

  11. Close • The close function closes a file stream previously opened with the open command. The file is specified by a logical name previously attached to the desired stream. • Syntax (close [<logical-name>]) • If close is called without arguments, all open files will be closed. • The user is responsible for closing all files opened during execution. If files are not closed, the contents are not guaranteed correct, however, CLIPS will attempt to close all open files when the exit command is executed. • The close function returns TRUE if any files were successfully closed, otherwise FALSE.

  12. Printout • The function printout allows output to a device attached to a logical name. • The logical name must be specified and the device must have been prepared previously for output (e.g., a file must be opened first). • To send output to stdout, use a t for the logical name.

  13. Syntax • (printout <logical-name> <expression>*) • Any number of expressions may be placed in a printout to be printed. • Each expression is evaluated and printed (with no spaces added between each printed expression). • The symbol crlf used as an <expression> will force a carriage return/newline and may be placed anywhere in the list of expressions to be printed. • The printout function strips quotation marks from around strings when it prints them. • This function has no return value.

  14. Read • The read function allows a user to input information for a single field. All of the standard field rules (e.g., multiple symbols must be embedded within quotes) apply.

  15. Syntax (read [<logical-name>]) • where <logical- name> is an optional parameter. If specified, read tries to read from whatever is attached to the logical file name. • If <logical- name> is t or is not specified, the function will read from stdin. • If an end of file (EOF) is encountered while reading, read will return the symbol EOF. • If errors are encountered while reading, the string "*** READ ERROR ***" will be returned.

  16. Readline • The readline function is similar to the read function, but it allows a whole string to be input instead of a single field. • Normally, read will stop when it encounters a delimiter. • The readline function only stops when it encounters a carriage return, a semicolon, or an EOF. • Any tabs or spaces in the input are returned by readline as a part of the string. • The readline function returns a string.

  17. Syntax (readline [<logical-name>]) • where <logical- name> is an optional parameter. • If specified, readline tries to read from whatever is attached to the logical file name. • If <logical- name> is t or is not specified, the function will read from stdin. • As with the read function, if an EOF is encountered, readlinewill return the symbol EOF. • If an error is encountered during input, readline returns the string "*** READ ERROR ***".

  18. Rename • The rename function is used to change the name of a file. • Syntax (rename <old-file-name> <new-file-name>) • Both <old- file- name> and <new- file- name> must either be a string or symbol and may include directory specifiers. • If a string is used, the backslash (\) and any other special characters that are part of either <old- file- name> or <new- file- name> must be escaped with a backslash. • The rename function returns TRUE if it was successful, otherwise FALSE.

  19. Remove • The remove function is used to delete a file. • Syntax (remove <file-name>) • The <file- name> must either be a string or symbol and may include directory specifiers. • If a string is used, the backslash (\) and any other special characters that are part of <file- name> must be escaped with a backslash. • The remove function returns TRUE if it was successful, otherwise FALSE.

  20. Summery of Today’s Lecture • Defglobal Construct • File reading writing

More Related