Tags MathematicaProgramming Analysing Screenplay with Mathematica admin January 1, 2018 I have a close relative who is an aspiring movie screenplay writer. During one of our recent meetings, he shared
Tags C++Programming C++17: constexpr if admin December 17, 2017 constexpr if is another nice little feature in C++17, which significantly simplifies the way we code, especially in the context
Tags C++Programming C++17: std::any admin December 3, 2017 In the previous two posts, I talked about std::variant<> and std::optional<>. Today, I want to take up std::any for discussion.
Tags C++Programming C++17: std::optional<> admin November 21, 2017 Suppose we want to write a function that returns a value, but with the possibility that the computation might fail.
Tags C++Programming C++17: std::variant<> admin November 5, 2017 C++17 introduces a new type-safe union in the form of std::variant. At any time, it can store a single value
Tags C++Programming C++17: Initialization in Selection Statements admin October 21, 2017 C++17 enhances if and switch statements with the ability to define variables whose life-time is limited to the corresponding scope.
Tags LISPNatural Language ProcessingProgramming Using Function Calls in the Grammar admin October 14, 2017 One of the advanced features of iLangGen is the ability to embed arbitrary function calls on the RHS of grammar
Tags LISPNatural Language ProcessingProgramming Reuse of Grammars Through Inheritance admin September 13, 2017 We are familiar with the advantages of class inheritance in object-oriented languages such as C++, C#, Java, and Python. The
Tags LISPNatural Language ProcessingProgramming Repetition in Grammar Rules admin August 18, 2017 Many times, we need to repeatedly generate an element, or in general, have a way to control the number times
Tags LISPNatural Language ProcessingProgramming Text Generation Using iLangGen Framework admin August 6, 2017 The two primary areas in Natural Language processing are Natural Language Understanding and Natural Language Generation. The former is concerned