Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Rule-Based Programming in C


Yet another way to control the execution of the rules is to break them into several modules that are called as needed by the main program. Listing Three is an example of this technique. The first function, air_land, decides between driving and flying and returns to the main program. The main program then calls either fly_rul() or drive_rul() to choose a specific vehicle. The module to call next is chosen by the main program on the basis of the information on the global variables.

As always, this sort of modularity improves the clarity of a program. It also increases speed by eliminating sections of rules from consideration.

#include "stdio.h"

int   av_speed;

char  like_scenery = 0,
      is_pilot = 0,
      fly = 0,
      drive = 0,
      fly_com = 0,
      fly_tcart = 0,
      fly_bon = 0,
      m_cycle = 0,
      car = 0;

main()
{
     int done, 
        distance, /* in miles */
        time;     /* in hours */
    
     char c;
     char str[10];

     printf("This is a program to help you with travel planning.\");
     printf("\n\nHow far are you going? (miles)\n");
     gets(str);
     distance = atoi(str);
     printf("\n\nHow much time do you have for the trip? (hours)\n");
     gets(str);
     time = atoi(str);
     av_speed = distance/time;
     printf("n\%d\n", av_speed);
     printf("Do you prefer scenery over speed? (Y/N)\n");
     gets(str);
     if(str[0] == 'Y')
        like_scenery = 1;
     printf("Are you a pilot? (Y/N)\n");
     gets(str);
     if(str[0] == 'Y')
        is_pilot = 1;
     air_land():
     if(fly)
        fly_rul();
     if(drive)
        drive_rul():
     if(fly_com)
        printf("\nFly COmmerical.");
     if(fly_tcart)
        printf("\nRent a Taylorcraft and fly low.");
     if(fly_bon)
        printf("\nRent a Bonanza and fly high.");
     if(m_cycle)
        printf("\Take your motocycle and ride the back roads.");
}
air_land()
{   
   if(av_speed > 60) {
      fly=1;
      return;
   }
   if(av_speed <= 60)
      drive = 1;
}
fly_rul()
{
   if(fly
   && !is_pilot)
       fly_com = 1;
   if(fly 
   && is_pilot
   && like_scenery
   && av_speed < 199)
        fly_tcart = 1;
   if(fly
   && is_pilot
   && (100 < av_speed)
   && (av_speed < 200))
       fly_bon = 1;
}
drive_rul()
{ 
   if(drive
   && like_scenery)
      m_cycle = 1;
   if(drive
   && !m_cycle)
       car = 1;
}
Listing Three.

In the module air_land(), the first rule causes a return form the module if it fires. This is valid because the average speed cannot satisfy both of the rules in the module. It is desirable because we gain a bit of speed by not considering the second rule of the first one fires.

Another method of accomplishing almost the same thing as separately called modules is to include a state requirement in the IF portion of each rule. Some means must be provided for changing to the next state, typically a line in the THEN portion is some of the rules

Not every rule will need to cause a state change. For example:

if(state== air_land
&& av_speed < 60) {  
   drive = TRUE
   state = choose_ground_veh;
}

It is also possible to change states at a certain point in the execution of a rule module without reference to the data. In that case, a rule such as this one would be used:

if  (state == air_land)
     state = choose_ground_veh;

This rule would probably be used at the end of a section of rules, organized so that it could not be reached until the state change was appropriate.

Going Further

The ideas here are best used for simple jobs or as a foundation for a study of more complex cases. However, do not overlook the fact that the techniques demonstrated in these examples can be used for a very large but uncomplicated jobs. They could be embedded in a C program to solve a classification problem or replace a complex decision tree.

To learn more about the subject, see the references. You might also want to experiment with the demonstration programs offered by several of the companies that sell expert systems shells. I found the EXSYS demos useful.

Courtesy AI Expert


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.