Exemple #1
0
 public override void TypeCheck(
     IVariableStack<Expression> TypeStack,
     IVariableStack<Expression> Stack,
     out Expression TypeSafeExpression, out Expression Type)
 {
     throw new NotImplementedException();
 }
Exemple #2
0
 public override void TypeCheck(
     IVariableStack<Expression> TypeStack,
     IVariableStack<Expression> Stack,
     out Expression TypeSafeExpression, out Expression Type)
 {
     TypeSafeExpression = this;
     Type = null;
     TypeStack.Lookup(this.Index, ref Type);
 }
Exemple #3
0
 public override void TypeCheck(
     IVariableStack<Expression> TypeStack, 
     IVariableStack<Expression> Stack,
     out Expression TypeSafeExpression, out Expression Type)
 {
     TypeSafeExpression = this;
     Type = this.Datum.Type;
 }
Exemple #4
0
 public override void TypeCheck(
     IVariableStack<Expression> TypeStack,
     IVariableStack<Expression> Stack,
     out Expression TypeSafeExpression, out Expression Type)
 {
     Expression sifunc;
     Expression itype;
     this.Function.TypeCheck(
         TypeStack.Cut(this.ArgumentIndex).Append(new Expression[] { this.ArgumentType }),
         Stack.Cut(this.ArgumentIndex).Append(new Expression[] { Expression.Variable(Stack.NextFreeIndex) }),
         out sifunc, out itype);
     Type = Expression.FunctionType(this.ArgumentIndex, this.ArgumentType, itype);
     TypeSafeExpression = new FunctionDefineExpression(this.ArgumentIndex, this.ArgumentType, sifunc);
 }
Exemple #5
0
        public override void TypeCheck(
            IVariableStack<Expression> TypeStack,
            IVariableStack<Expression> Stack,
            out Expression TypeSafeExpression, out Expression Type)
        {
            int li = TypeStack.NextFreeIndex;

            Expression sfunc;
            Expression functype;
            this.Function.TypeCheck(TypeStack, Stack, out sfunc, out functype);

            FunctionDefineExpression fte;
            while ((fte = functype as FunctionDefineExpression) == null && functype.Reduce(Stack, ref functype)) ;
            if (fte == null)
            {
                throw new NotCallableException(this);
            }

            Expression sarg;
            Expression argtype;
            this.Argument.TypeCheck(TypeStack, Stack, out sarg, out argtype);

            FuzzyBool typeokay = Expression.Equivalent(ref argtype, ref fte.ArgumentType, Stack);
            if (typeokay != FuzzyBool.True)
            {
                throw new TypeCheckException(this);
            }

            TypeSafeExpression = new FunctionCallExpression(sfunc, sarg);
            Type = fte.Function.SubstituteOne(Stack.NextFreeIndex, sarg);
        }
Exemple #6
0
 /// <summary>
 /// Creates a type-safe version of the expression by using conversions where necessary. An exception will
 /// be thrown if this is not possible.
 /// </summary>
 public abstract void TypeCheck(
     IVariableStack<Expression> TypeStack, 
     IVariableStack<Expression> Stack,
     out Expression TypeSafeExpression, out Expression Type);
Exemple #7
0
        /// <summary>
        /// Gets if the two specified expressions are equivalent. This function reduces and subsitutes 
        /// given expressions and the stack as needed to get an accurate result.
        /// </summary>
        public static FuzzyBool Equivalent(ref Expression A, ref Expression B, IVariableStack<Expression> Stack)
        {
            if (A == B)
            {
                return FuzzyBool.True;
            }

            while (true)
            {
                // Variable equality
                VariableExpression va = A as VariableExpression;
                if (va != null)
                {
                    VariableExpression vb = B as VariableExpression;
                    if (vb != null)
                    {
                        if (va.Index == vb.Index)
                        {
                            return FuzzyBool.True;
                        }
                    }
                }

                // Tuple equality
                TupleExpression at = A as TupleExpression;
                if (at != null)
                {
                    TupleExpression bt = B as TupleExpression;
                    if (bt != null)
                    {
                        if (at.Parts.Length != bt.Parts.Length)
                        {
                            return FuzzyBool.False;
                        }
                        for (int t = 0; t < at.Parts.Length; t++)
                        {
                            FuzzyBool pe = Equivalent(ref at.Parts[t], ref bt.Parts[t], Stack);
                            if (pe == FuzzyBool.False)
                            {
                                return FuzzyBool.False;
                            }
                            if (pe == FuzzyBool.Undetermined)
                            {
                                return FuzzyBool.Undetermined;
                            }
                        }
                        return FuzzyBool.True;
                    }
                }

                // Tuple break
                TupleBreakExpression atb = A as TupleBreakExpression;
                if (atb != null)
                {
                    TupleBreakExpression btb = B as TupleBreakExpression;
                    if (btb != null)
                    {
                        return FuzzyBoolLogic.And(
                            Expression.Equivalent(ref atb.SourceTuple, ref btb.SourceTuple, Stack),
                            Expression.Equivalent(ref atb.InnerExpression, ref btb.InnerExpression, Stack));
                    }
                }

                // Function definition equality
                FunctionDefineExpression afd = A as FunctionDefineExpression;
                if (afd != null)
                {
                    FunctionDefineExpression bfd = B as FunctionDefineExpression;
                    if (bfd != null)
                    {
                        if (afd.ArgumentIndex == bfd.ArgumentIndex)
                        {
                            var nstack = Stack.Cut(afd.ArgumentIndex).Append(new Expression[] { Expression.Variable(afd.ArgumentIndex) });
                            return FuzzyBoolLogic.And(
                                Expression.Equivalent(ref afd.ArgumentType, ref bfd.ArgumentType, nstack),
                                Expression.Equivalent(ref afd.Function, ref bfd.Function, nstack));
                        }
                    }
                }

                // Nothing yet? try reducing
                if (A.Reduce(Stack, ref A) | B.Reduce(Stack, ref B))
                {
                    continue;
                }
                else
                {
                    break;
                }
            }

            return FuzzyBool.Undetermined;
        }
Exemple #8
0
 public override void TypeCheck(
     IVariableStack<Expression> TypeStack,
     IVariableStack<Expression> Stack,
     out Expression TypeSafeExpression, out Expression Type)
 {
     if (this.Parts != null && this.Parts.Length != 0)
     {
         Expression[] sparts = new Expression[this.Parts.Length];
         Expression[] stypes = new Expression[this.Parts.Length];
         for (int t = 0; t < this.Parts.Length; t++)
         {
             this.Parts[t].TypeCheck(TypeStack, Stack, out sparts[t], out stypes[t]);
         }
         TypeSafeExpression = new TupleExpression(sparts);
         Type = new TupleExpression(stypes);
     }
     else
     {
         TypeSafeExpression = Empty;
         Type = Empty;
     }
 }
Exemple #9
0
        public override void TypeCheck(
            IVariableStack<Expression> TypeStack, 
            IVariableStack<Expression> Stack, 
            out Expression TypeSafeExpression, out Expression Type)
        {
            Expression stuple;
            Expression tupletype;
            this.SourceTuple.TypeCheck(TypeStack, Stack, out stuple, out tupletype);

            TupleExpression te;
            while ((te = tupletype as TupleExpression) == null && tupletype.Reduce(Stack, ref tupletype)) ;
            if (te == null)
            {
                throw new NotImplementedException();
            }

            TupleExpression se;
            while ((se = stuple as TupleExpression) == null && stuple.Reduce(Stack, ref stuple)) ;
            Expression[] stackappend;
            if (se != null)
            {
                stackappend = se.Parts ?? new Expression[0];
                if (stackappend.Length != this.TupleSize)
                {
                    throw new NotImplementedException();
                }
            }
            else
            {
                if (te.Parts.Length != this.TupleSize)
                {
                    throw new NotImplementedException();
                }

                stackappend = new Expression[te.Parts.Length];
                int ni = Stack.NextFreeIndex;
                for (int t = 0; t < te.Parts.Length; t++)
                {
                    stackappend[t] = Expression.Variable(t + ni);
                }
            }

            Expression si;
            Expression itype;
            this.InnerExpression.TypeCheck(
                TypeStack.Cut(this.BreakIndex).Append(te.Parts ?? new Expression[0]),
                Stack.Cut(this.BreakIndex).Append(stackappend),
                out si,
                out itype);

            TypeSafeExpression = new TupleBreakExpression(this.BreakIndex, this.TupleSize, stuple, si);
            Type = itype;
        }
Exemple #10
0
 /// <summary>
 /// Creates stacks and information about the root scope of this input.
 /// </summary>
 public void PrepareRootScope(out Scope Scope, out IMutableVariableStack<Value> Stack, out IVariableStack<Expression> TypeStack)
 {
     Dictionary<string, int> varmap = new Dictionary<string, int>();
     Value[] vals = new Value[this._RootVariables.Count];
     Expression[] types = new Expression[vals.Length];
     for (int t = 0; t < vals.Length; t++)
     {
         vals[t] = this._RootVariables[t].Value;
         types[t] = this._RootVariables[t].Type;
         varmap.Add(this._RootVariables[t].Name, t);
     }
     Scope = new Scope() { Variables = varmap, NextFreeIndex = vals.Length };
     Stack = new SpaghettiStack<Value>(vals);
     TypeStack = new SpaghettiStack<Expression>(types);
 }