CS代考计算机代写 cache interpreter /***************************************************************************/

/***************************************************************************/
/* */
/* ftmodapi.h */
/* */
/* FreeType modules public interface (specification). */
/* */
/* Copyright 1996-2015 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
/* This file is part of the FreeType project, and may only be used, */
/* modified, and distributed under the terms of the FreeType project */
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
/* this file you indicate that you have read the license and */
/* understand and accept it fully. */
/* */
/***************************************************************************/

#ifndef __FTMODAPI_H__
#define __FTMODAPI_H__

#include
#include FT_FREETYPE_H

#ifdef FREETYPE_H
#error “freetype.h of FreeType 1 has been loaded!”
#error “Please fix the directory search order for header files”
#error “so that freetype.h of FreeType 2 is found first.”
#endif

FT_BEGIN_HEADER

/*************************************************************************/
/* */
/*

*/
/* module_management */
/* */
/* */<br /> /* Module Management */<br /> /* */<br /> /* <Abstract> */<br /> /* How to add, upgrade, remove, and control modules from FreeType. */<br /> /* */<br /> /* <Description> */<br /> /* The definitions below are used to manage modules within FreeType. */<br /> /* Modules can be added, upgraded, and removed at runtime. */<br /> /* Additionally, some module properties can be controlled also. */<br /> /* */<br /> /* Here is a list of possible values of the `module_name’ field in */<br /> /* the @FT_Module_Class structure. */<br /> /* */<br /> /* { */<br /> /* autofitter */<br /> /* bdf */<br /> /* cff */<br /> /* gxvalid */<br /> /* otvalid */<br /> /* pcf */<br /> /* pfr */<br /> /* psaux */<br /> /* pshinter */<br /> /* psnames */<br /> /* raster1 */<br /> /* sfnt */<br /> /* smooth, smooth-lcd, smooth-lcdv */<br /> /* truetype */<br /> /* type1 */<br /> /* type42 */<br /> /* t1cid */<br /> /* winfonts */<br /> /* } */<br /> /* */<br /> /* Note that the FreeType Cache sub-system is not a FreeType module. */<br /> /* */<br /> /* <Order> */<br /> /* FT_Module */<br /> /* FT_Module_Constructor */<br /> /* FT_Module_Destructor */<br /> /* FT_Module_Requester */<br /> /* FT_Module_Class */<br /> /* */<br /> /* FT_Add_Module */<br /> /* FT_Get_Module */<br /> /* FT_Remove_Module */<br /> /* FT_Add_Default_Modules */<br /> /* */<br /> /* FT_Property_Set */<br /> /* FT_Property_Get */<br /> /* */<br /> /* FT_New_Library */<br /> /* FT_Done_Library */<br /> /* FT_Reference_Library */<br /> /* */<br /> /* FT_Renderer */<br /> /* FT_Renderer_Class */<br /> /* */<br /> /* FT_Get_Renderer */<br /> /* FT_Set_Renderer */<br /> /* */<br /> /* FT_Set_Debug_Hook */<br /> /* */<br /> /*************************************************************************/</p> <p> /* module bit flags */<br /> #define FT_MODULE_FONT_DRIVER 1 /* this module is a font driver */<br /> #define FT_MODULE_RENDERER 2 /* this module is a renderer */<br /> #define FT_MODULE_HINTER 4 /* this module is a glyph hinter */<br /> #define FT_MODULE_STYLER 8 /* this module is a styler */</p> <p>#define FT_MODULE_DRIVER_SCALABLE 0x100 /* the driver supports */<br /> /* scalable fonts */<br /> #define FT_MODULE_DRIVER_NO_OUTLINES 0x200 /* the driver does not */<br /> /* support vector outlines */<br /> #define FT_MODULE_DRIVER_HAS_HINTER 0x400 /* the driver provides its */<br /> /* own hinter */</p> <p> /* deprecated values */<br /> #define ft_module_font_driver FT_MODULE_FONT_DRIVER<br /> #define ft_module_renderer FT_MODULE_RENDERER<br /> #define ft_module_hinter FT_MODULE_HINTER<br /> #define ft_module_styler FT_MODULE_STYLER</p> <p>#define ft_module_driver_scalable FT_MODULE_DRIVER_SCALABLE<br /> #define ft_module_driver_no_outlines FT_MODULE_DRIVER_NO_OUTLINES<br /> #define ft_module_driver_has_hinter FT_MODULE_DRIVER_HAS_HINTER</p> <p> typedef FT_Pointer FT_Module_Interface;</p> <p> /*************************************************************************/<br /> /* */<br /> /* <FuncType> */<br /> /* FT_Module_Constructor */<br /> /* */<br /> /* <Description> */<br /> /* A function used to initialize (not create) a new module object. */<br /> /* */<br /> /* <Input> */<br /> /* module :: The module to initialize. */<br /> /* */<br /> typedef FT_Error<br /> (*FT_Module_Constructor)( FT_Module module );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <FuncType> */<br /> /* FT_Module_Destructor */<br /> /* */<br /> /* <Description> */<br /> /* A function used to finalize (not destroy) a given module object. */<br /> /* */<br /> /* <Input> */<br /> /* module :: The module to finalize. */<br /> /* */<br /> typedef void<br /> (*FT_Module_Destructor)( FT_Module module );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <FuncType> */<br /> /* FT_Module_Requester */<br /> /* */<br /> /* <Description> */<br /> /* A function used to query a given module for a specific interface. */<br /> /* */<br /> /* <Input> */<br /> /* module :: The module to be searched. */<br /> /* */<br /> /* name :: The name of the interface in the module. */<br /> /* */<br /> typedef FT_Module_Interface<br /> (*FT_Module_Requester)( FT_Module module,<br /> const char* name );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Struct> */<br /> /* FT_Module_Class */<br /> /* */<br /> /* <Description> */<br /> /* The module class descriptor. */<br /> /* */<br /> /* <Fields> */<br /> /* module_flags :: Bit flags describing the module. */<br /> /* */<br /> /* module_size :: The size of one module object/instance in */<br /> /* bytes. */<br /> /* */<br /> /* module_name :: The name of the module. */<br /> /* */<br /> /* module_version :: The version, as a 16.16 fixed number */<br /> /* (major.minor). */<br /> /* */<br /> /* module_requires :: The version of FreeType this module requires, */<br /> /* as a 16.16 fixed number (major.minor). Starts */<br /> /* at version 2.0, i.e., 0x20000. */<br /> /* */<br /> /* module_init :: The initializing function. */<br /> /* */<br /> /* module_done :: The finalizing function. */<br /> /* */<br /> /* get_interface :: The interface requesting function. */<br /> /* */<br /> typedef struct FT_Module_Class_<br /> {<br /> FT_ULong module_flags;<br /> FT_Long module_size;<br /> const FT_String* module_name;<br /> FT_Fixed module_version;<br /> FT_Fixed module_requires;</p> <p> const void* module_interface;</p> <p> FT_Module_Constructor module_init;<br /> FT_Module_Destructor module_done;<br /> FT_Module_Requester get_interface;</p> <p> } FT_Module_Class;</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Add_Module */<br /> /* */<br /> /* <Description> */<br /> /* Add a new module to a given library instance. */<br /> /* */<br /> /* <InOut> */<br /> /* library :: A handle to the library object. */<br /> /* */<br /> /* <Input> */<br /> /* clazz :: A pointer to class descriptor for the module. */<br /> /* */<br /> /* <Return> */<br /> /* FreeType error code. 0~means success. */<br /> /* */<br /> /* <Note> */<br /> /* An error will be returned if a module already exists by that name, */<br /> /* or if the module requires a version of FreeType that is too great. */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_Add_Module( FT_Library library,<br /> const FT_Module_Class* clazz );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Get_Module */<br /> /* */<br /> /* <Description> */<br /> /* Find a module by its name. */<br /> /* */<br /> /* <Input> */<br /> /* library :: A handle to the library object. */<br /> /* */<br /> /* module_name :: The module’s name (as an ASCII string). */<br /> /* */<br /> /* <Return> */<br /> /* A module handle. 0~if none was found. */<br /> /* */<br /> /* <Note> */<br /> /* FreeType’s internal modules aren’t documented very well, and you */<br /> /* should look up the source code for details. */<br /> /* */<br /> FT_EXPORT( FT_Module )<br /> FT_Get_Module( FT_Library library,<br /> const char* module_name );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Remove_Module */<br /> /* */<br /> /* <Description> */<br /> /* Remove a given module from a library instance. */<br /> /* */<br /> /* <InOut> */<br /> /* library :: A handle to a library object. */<br /> /* */<br /> /* <Input> */<br /> /* module :: A handle to a module object. */<br /> /* */<br /> /* <Return> */<br /> /* FreeType error code. 0~means success. */<br /> /* */<br /> /* <Note> */<br /> /* The module object is destroyed by the function in case of success. */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_Remove_Module( FT_Library library,<br /> FT_Module module );</p> <p> /**********************************************************************<br /> *<br /> * @function:<br /> * FT_Property_Set<br /> *<br /> * @description:<br /> * Set a property for a given module.<br /> *<br /> * @input:<br /> * library ::<br /> * A handle to the library the module is part of.<br /> *<br /> * module_name ::<br /> * The module name.<br /> *<br /> * property_name ::<br /> * The property name. Properties are described in the `Synopsis’<br /> * subsection of the module’s documentation.<br /> *<br /> * Note that only a few modules have properties.<br /> *<br /> * value ::<br /> * A generic pointer to a variable or structure that gives the new<br /> * value of the property. The exact definition of `value’ is<br /> * dependent on the property; see the `Synopsis’ subsection of the<br /> * module’s documentation.<br /> *<br /> * @return:<br /> * FreeType error code. 0~means success.<br /> *<br /> * @note:<br /> * If `module_name’ isn’t a valid module name, or `property_name’<br /> * doesn’t specify a valid property, or if `value’ doesn’t represent a<br /> * valid value for the given property, an error is returned.<br /> *<br /> * The following example sets property `bar’ (a simple integer) in<br /> * module `foo’ to value~1.<br /> *<br /> * {<br /> * FT_UInt bar;<br /> *<br /> *<br /> * bar = 1;<br /> * FT_Property_Set( library, “foo”, “bar”, &bar );<br /> * }<br /> *<br /> * Note that the FreeType Cache sub-system doesn’t recognize module<br /> * property changes. To avoid glyph lookup confusion within the cache<br /> * you should call @FTC_Manager_Reset to completely flush the cache if<br /> * a module property gets changed after @FTC_Manager_New has been<br /> * called.<br /> *<br /> * It is not possible to set properties of the FreeType Cache<br /> * sub-system itself with FT_Property_Set; use @FTC_Property_Set<br /> * instead.<br /> *<br /> * @since:<br /> * 2.4.11<br /> *<br /> */<br /> FT_EXPORT( FT_Error )<br /> FT_Property_Set( FT_Library library,<br /> const FT_String* module_name,<br /> const FT_String* property_name,<br /> const void* value );</p> <p> /**********************************************************************<br /> *<br /> * @function:<br /> * FT_Property_Get<br /> *<br /> * @description:<br /> * Get a module’s property value.<br /> *<br /> * @input:<br /> * library ::<br /> * A handle to the library the module is part of.<br /> *<br /> * module_name ::<br /> * The module name.<br /> *<br /> * property_name ::<br /> * The property name. Properties are described in the `Synopsis’<br /> * subsection of the module’s documentation.<br /> *<br /> * @inout:<br /> * value ::<br /> * A generic pointer to a variable or structure that gives the<br /> * value of the property. The exact definition of `value’ is<br /> * dependent on the property; see the `Synopsis’ subsection of the<br /> * module’s documentation.<br /> *<br /> * @return:<br /> * FreeType error code. 0~means success.<br /> *<br /> * @note:<br /> * If `module_name’ isn’t a valid module name, or `property_name’<br /> * doesn’t specify a valid property, or if `value’ doesn’t represent a<br /> * valid value for the given property, an error is returned.<br /> *<br /> * The following example gets property `baz’ (a range) in module `foo’.<br /> *<br /> * {<br /> * typedef range_<br /> * {<br /> * FT_Int32 min;<br /> * FT_Int32 max;<br /> *<br /> * } range;<br /> *<br /> * range baz;<br /> *<br /> *<br /> * FT_Property_Get( library, “foo”, “baz”, &baz );<br /> * }<br /> *<br /> * It is not possible to retrieve properties of the FreeType Cache<br /> * sub-system with FT_Property_Get; use @FTC_Property_Get instead.<br /> *<br /> * @since:<br /> * 2.4.11<br /> *<br /> */<br /> FT_EXPORT( FT_Error )<br /> FT_Property_Get( FT_Library library,<br /> const FT_String* module_name,<br /> const FT_String* property_name,<br /> void* value );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Reference_Library */<br /> /* */<br /> /* <Description> */<br /> /* A counter gets initialized to~1 at the time an @FT_Library */<br /> /* structure is created. This function increments the counter. */<br /> /* @FT_Done_Library then only destroys a library if the counter is~1, */<br /> /* otherwise it simply decrements the counter. */<br /> /* */<br /> /* This function helps in managing life-cycles of structures that */<br /> /* reference @FT_Library objects. */<br /> /* */<br /> /* <Input> */<br /> /* library :: A handle to a target library object. */<br /> /* */<br /> /* <Return> */<br /> /* FreeType error code. 0~means success. */<br /> /* */<br /> /* <Since> */<br /> /* 2.4.2 */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_Reference_Library( FT_Library library );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_New_Library */<br /> /* */<br /> /* <Description> */<br /> /* This function is used to create a new FreeType library instance */<br /> /* from a given memory object. It is thus possible to use libraries */<br /> /* with distinct memory allocators within the same program. Note, */<br /> /* however, that the used @FT_Memory structure is expected to remain */<br /> /* valid for the life of the @FT_Library object. */<br /> /* */<br /> /* Normally, you would call this function (followed by a call to */<br /> /* @FT_Add_Default_Modules or a series of calls to @FT_Add_Module) */<br /> /* instead of @FT_Init_FreeType to initialize the FreeType library. */<br /> /* */<br /> /* Don’t use @FT_Done_FreeType but @FT_Done_Library to destroy a */<br /> /* library instance. */<br /> /* */<br /> /* <Input> */<br /> /* memory :: A handle to the original memory object. */<br /> /* */<br /> /* <Output> */<br /> /* alibrary :: A pointer to handle of a new library object. */<br /> /* */<br /> /* <Return> */<br /> /* FreeType error code. 0~means success. */<br /> /* */<br /> /* <Note> */<br /> /* See the discussion of reference counters in the description of */<br /> /* @FT_Reference_Library. */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_New_Library( FT_Memory memory,<br /> FT_Library *alibrary );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Done_Library */<br /> /* */<br /> /* <Description> */<br /> /* Discard a given library object. This closes all drivers and */<br /> /* discards all resource objects. */<br /> /* */<br /> /* <Input> */<br /> /* library :: A handle to the target library. */<br /> /* */<br /> /* <Return> */<br /> /* FreeType error code. 0~means success. */<br /> /* */<br /> /* <Note> */<br /> /* See the discussion of reference counters in the description of */<br /> /* @FT_Reference_Library. */<br /> /* */<br /> FT_EXPORT( FT_Error )<br /> FT_Done_Library( FT_Library library );</p> <p> /* */</p> <p> typedef void<br /> (*FT_DebugHook_Func)( void* arg );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Set_Debug_Hook */<br /> /* */<br /> /* <Description> */<br /> /* Set a debug hook function for debugging the interpreter of a font */<br /> /* format. */<br /> /* */<br /> /* <InOut> */<br /> /* library :: A handle to the library object. */<br /> /* */<br /> /* <Input> */<br /> /* hook_index :: The index of the debug hook. You should use the */<br /> /* values defined in `ftobjs.h’, e.g., */<br /> /* `FT_DEBUG_HOOK_TRUETYPE’. */<br /> /* */<br /> /* debug_hook :: The function used to debug the interpreter. */<br /> /* */<br /> /* <Note> */<br /> /* Currently, four debug hook slots are available, but only two (for */<br /> /* the TrueType and the Type~1 interpreter) are defined. */<br /> /* */<br /> /* Since the internal headers of FreeType are no longer installed, */<br /> /* the symbol `FT_DEBUG_HOOK_TRUETYPE’ isn’t available publicly. */<br /> /* This is a bug and will be fixed in a forthcoming release. */<br /> /* */<br /> FT_EXPORT( void )<br /> FT_Set_Debug_Hook( FT_Library library,<br /> FT_UInt hook_index,<br /> FT_DebugHook_Func debug_hook );</p> <p> /*************************************************************************/<br /> /* */<br /> /* <Function> */<br /> /* FT_Add_Default_Modules */<br /> /* */<br /> /* <Description> */<br /> /* Add the set of default drivers to a given library object. */<br /> /* This is only useful when you create a library object with */<br /> /* @FT_New_Library (usually to plug a custom memory manager). */<br /> /* */<br /> /* <InOut> */<br /> /* library :: A handle to a new library object. */<br /> /* */<br /> FT_EXPORT( void )<br /> FT_Add_Default_Modules( FT_Library library );</p> <p> /**************************************************************************<br /> *<br /> * @section:<br /> * truetype_engine<br /> *<br /> * @title:<br /> * The TrueType Engine<br /> *<br /> * @abstract:<br /> * TrueType bytecode support.<br /> *<br /> * @description:<br /> * This section contains a function used to query the level of TrueType<br /> * bytecode support compiled in this version of the library.<br /> *<br /> */</p> <p> /**************************************************************************<br /> *<br /> * @enum:<br /> * FT_TrueTypeEngineType<br /> *<br /> * @description:<br /> * A list of values describing which kind of TrueType bytecode<br /> * engine is implemented in a given FT_Library instance. It is used<br /> * by the @FT_Get_TrueType_Engine_Type function.<br /> *<br /> * @values:<br /> * FT_TRUETYPE_ENGINE_TYPE_NONE ::<br /> * The library doesn’t implement any kind of bytecode interpreter.<br /> *<br /> * FT_TRUETYPE_ENGINE_TYPE_UNPATENTED ::<br /> * The library implements a bytecode interpreter that doesn’t<br /> * support the patented operations of the TrueType virtual machine.<br /> *<br /> * Its main use is to load certain Asian fonts that position and<br /> * scale glyph components with bytecode instructions. It produces<br /> * bad output for most other fonts.<br /> *<br /> * FT_TRUETYPE_ENGINE_TYPE_PATENTED ::<br /> * The library implements a bytecode interpreter that covers<br /> * the full instruction set of the TrueType virtual machine (this<br /> * was governed by patents until May 2010, hence the name).<br /> *<br /> * @since:<br /> * 2.2<br /> *<br /> */<br /> typedef enum FT_TrueTypeEngineType_<br /> {<br /> FT_TRUETYPE_ENGINE_TYPE_NONE = 0,<br /> FT_TRUETYPE_ENGINE_TYPE_UNPATENTED,<br /> FT_TRUETYPE_ENGINE_TYPE_PATENTED</p> <p> } FT_TrueTypeEngineType;</p> <p> /**************************************************************************<br /> *<br /> * @func:<br /> * FT_Get_TrueType_Engine_Type<br /> *<br /> * @description:<br /> * Return an @FT_TrueTypeEngineType value to indicate which level of<br /> * the TrueType virtual machine a given library instance supports.<br /> *<br /> * @input:<br /> * library ::<br /> * A library instance.<br /> *<br /> * @return:<br /> * A value indicating which level is supported.<br /> *<br /> * @since:<br /> * 2.2<br /> *<br /> */<br /> FT_EXPORT( FT_TrueTypeEngineType )<br /> FT_Get_TrueType_Engine_Type( FT_Library library );</p> <p> /* */</p> <p>FT_END_HEADER</p> <p>#endif /* __FTMODAPI_H__ */</p> <p>/* END */</p> </div><!-- .entry-content .clear --> </div> </article><!-- #post-## --> <nav class="navigation post-navigation" role="navigation" aria-label="Post navigation"> <span class="screen-reader-text">Post navigation</span> <div class="nav-links"><div class="nav-previous"><a title="CS代考计算机代写 /* Shuffles a 128 kB data buffer 10 times, printing the checksum"href="https://powcoder.com/2021/02/13/cs%e4%bb%a3%e8%80%83%e8%ae%a1%e7%ae%97%e6%9c%ba%e4%bb%a3%e5%86%99-shuffles-a-128-kb-data-buffer-10-times-printing-the-checksum/" rel="prev"><span class="ast-left-arrow">←</span> Previous Post</a></div><div class="nav-next"><a title="CS代考计算机代写 // Dummy vertex shader"href="https://powcoder.com/2021/02/13/cs%e4%bb%a3%e8%80%83%e8%ae%a1%e7%ae%97%e6%9c%ba%e4%bb%a3%e5%86%99-dummy-vertex-shader/" rel="next">Next Post <span class="ast-right-arrow">→</span></a></div></div> </nav><div class="ast-single-related-posts-container ast-container--fallback"><div class="ast-related-posts-title-section"> <h2 class="ast-related-posts-title"> Related Posts </h2> </div><div class="ast-related-posts-wrapper"> <article class="ast-related-post post-38 post type-post status-publish format-standard hentry category-uncategorized tag-matlab tag-simulation"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/matlab-simulation/" target="_self" rel="bookmark noopener noreferrer">matlab simulation</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/matlab/" rel="tag">matlab代写代考</a>, <a href="https://powcoder.com/tag/simulation/" rel="tag">simulation</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-39 post type-post status-publish format-standard hentry category-uncategorized tag-c"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/ab202-assignment-1-arkapong/" target="_self" rel="bookmark noopener noreferrer">AB202 Assignment 1: Arkapong</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/c/" rel="tag">c++代做</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-40 post type-post status-publish format-standard hentry category-uncategorized tag-c"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/msc-c-programming/" target="_self" rel="bookmark noopener noreferrer">MSc C++ Programming</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/c/" rel="tag">c++代做</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-41 post type-post status-publish format-standard hentry category-uncategorized tag-prolog"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/msc-assessed-prolog-lab-exercise-2/" target="_self" rel="bookmark noopener noreferrer">MSc Assessed Prolog Lab Exercise 2</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/prolog/" rel="tag">Prolog代写代考</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-49 post type-post status-publish format-standard hentry category-uncategorized tag-c tag-uml"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/spring-session2015assignment-1/" target="_self" rel="bookmark noopener noreferrer">Spring Session:2015:Assignment 1</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/c/" rel="tag">c++代做</a>, <a href="https://powcoder.com/tag/uml/" rel="tag">UML</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-51 post type-post status-publish format-standard hentry category-uncategorized tag-uml"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/assignment-2-inception-and-elaboration/" target="_self" rel="bookmark noopener noreferrer">Assignment 2: "Inception and Elaboration"</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/uml/" rel="tag">UML</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-55 post type-post status-publish format-standard hentry category-uncategorized tag-android tag-java"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/android-app/" target="_self" rel="bookmark noopener noreferrer">android app</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/android/" rel="tag">android</a>, <a href="https://powcoder.com/tag/java/" rel="tag">Java代写代考</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-57 post type-post status-publish format-standard hentry category-uncategorized tag-java tag-junit"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/comp220-software-development-tools/" target="_self" rel="bookmark noopener noreferrer">COMP220: Software Development Tools</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/java/" rel="tag">Java代写代考</a>, <a href="https://powcoder.com/tag/junit/" rel="tag">junit</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> </div> </div> </main><!-- #main --> </div><!-- #primary --> <div class="widget-area secondary" id="secondary" itemtype="https://schema.org/WPSideBar" itemscope="itemscope"> <div class="sidebar-main" > <aside id="custom_html-2" class="widget_text widget widget_custom_html"><h2 class="widget-title">Contact</h2><div class="textwidget custom-html-widget"><ul> <li><strong>QQ: 1823890830</strong></li> <li><strong>微信号(WeChat): powcoder</strong></li> <li><img class="alignnone wp-image-366" src="https://i0.wp.com/powcoder.com/wp-content/uploads/2021/01/powcoder.jpg?resize=133%2C133&ssl=1" alt="myweixin" width="133" height="133" data-recalc-dims="1" /></li> <li><strong>Email: <a href="mailto:powcoder@163.com">powcoder@163.com</a></strong></li> </ul> <ul> <li><strong>请加微信或QQ发要求</strong></li> <li><strong>Contact me through WeChat</strong></li> </ul> </div></aside><aside id="categories-2" class="widget widget_categories"><h2 class="widget-title">Categories</h2><nav aria-label="Categories"> <ul> <li class="cat-item cat-item-245"><a href="https://powcoder.com/category/machine-learning/">机器学习代写代考 machine learning</a> </li> <li class="cat-item cat-item-242"><a href="https://powcoder.com/category/database-db-sql/">数据库代写代考 DB Database SQL</a> </li> <li class="cat-item cat-item-244"><a href="https://powcoder.com/category/data-structure-algorithm/">数据结构算法代写代考 data structure algorithm</a> </li> <li class="cat-item cat-item-239"><a href="https://powcoder.com/category/%e4%ba%ba%e5%b7%a5%e6%99%ba%e8%83%bd-ai-artificial-intelligence/">人工智能 AI Artificial Intelligence</a> </li> <li class="cat-item cat-item-247"><a href="https://powcoder.com/category/compiler/">编译器原理 Compiler</a> </li> <li class="cat-item cat-item-254"><a href="https://powcoder.com/category/network-socket/">计算机网络 套接字编程 computer network socket programming</a> </li> <li class="cat-item cat-item-240"><a href="https://powcoder.com/category/hadoop-map-reduce-spark-hbase/">大数据 Hadoop Map Reduce Spark HBase</a> </li> <li class="cat-item cat-item-241"><a href="https://powcoder.com/category/%e6%93%8d%e4%bd%9c%e7%b3%bb%e7%bb%9fosoperating-system/">操作系统OS代写代考 (Operating System)</a> </li> <li class="cat-item cat-item-250"><a href="https://powcoder.com/category/computer-architecture/">计算机体系结构代写代考 Computer Architecture</a> </li> <li class="cat-item cat-item-251"><a href="https://powcoder.com/category/computer-graphics-opengl-webgl/">计算机图形学 Computer Graphics opengl webgl</a> </li> <li class="cat-item cat-item-249"><a href="https://powcoder.com/category/nlp/">自然语言处理 NLP natural language processing</a> </li> <li class="cat-item cat-item-383"><a href="https://powcoder.com/category/%e5%b9%b6%e8%a1%8c%e8%ae%a1%e7%ae%97/">并行计算</a> </li> <li class="cat-item cat-item-253"><a href="https://powcoder.com/category/computation-theory/">计算理论 Theory of Computation</a> </li> <li class="cat-item cat-item-252"><a href="https://powcoder.com/category/computer-security/">计算机安全密码学computer security cryptography</a> </li> <li class="cat-item cat-item-246"><a href="https://powcoder.com/category/sys-programming/">系统编程 System programming</a> </li> <li class="cat-item cat-item-367"><a href="https://powcoder.com/category/%e6%95%b0%e5%80%bc%e7%a7%91%e5%ad%a6%e8%ae%a1%e7%ae%97/">数值科学计算</a> </li> <li class="cat-item cat-item-255"><a href="https://powcoder.com/category/%e8%ae%a1%e7%ae%97%e6%9c%ba%e8%a7%86%e8%a7%89compute-vision/">计算机视觉代写代考(Compute Vision)</a> </li> <li class="cat-item cat-item-248"><a href="https://powcoder.com/category/web/">网页应用 Web Application</a> </li> <li class="cat-item cat-item-401"><a href="https://powcoder.com/category/%e5%88%86%e5%b8%83%e5%bc%8f%e7%b3%bb%e7%bb%9f/">分布式系统</a> </li> <li class="cat-item cat-item-640"><a href="https://powcoder.com/category/%e7%ac%94%e8%af%95%e9%9d%a2%e8%af%95/">笔试面试</a> </li> <li class="cat-item cat-item-403"><a href="https://powcoder.com/category/%e5%87%bd%e6%95%b0%e5%bc%8f%e7%bc%96%e7%a8%8b/">函数式编程</a> </li> <li class="cat-item cat-item-243"><a href="https://powcoder.com/category/%e6%95%b0%e6%8d%ae%e6%8c%96%e6%8e%98-data-mining/">数据挖掘 Data Mining</a> </li> <li class="cat-item cat-item-364"><a href="https://powcoder.com/category/%e7%a6%bb%e6%95%a3%e6%95%b0%e5%ad%a6/">离散数学代写代考 (Discrete mathematics)</a> </li> <li class="cat-item cat-item-384"><a href="https://powcoder.com/category/%e8%bd%af%e4%bb%b6%e5%b7%a5%e7%a8%8b/">软件工程</a> </li> <li class="cat-item cat-item-551"><a href="https://powcoder.com/category/%e7%bc%96%e7%a8%8b%e8%af%ad%e8%a8%80-programming-language/">编程语言 Programming Language</a> </li> <li class="cat-item cat-item-594"><a href="https://powcoder.com/category/%e7%bb%9f%e8%ae%a1%e4%bb%a3%e5%86%99%e4%bb%a3%e8%80%83/">统计代写代考</a> </li> <li class="cat-item cat-item-574"><a href="https://powcoder.com/category/%e8%bf%90%e7%ad%b9%e5%ad%a6-operation-research/">运筹学 Operation Research</a> </li> </ul> </nav></aside><aside id="tag_cloud-3" class="widget widget_tag_cloud"><h2 class="widget-title">Tag</h2><nav aria-label="Tag"><div class="tagcloud"><a href="https://powcoder.com/tag/algorithm/" class="tag-cloud-link tag-link-469 tag-link-position-1" style="font-size: 18px;" aria-label="Algorithm算法代写代考 (15,132 items)">Algorithm算法代写代考</a><a href="https://powcoder.com/tag/java/" class="tag-cloud-link tag-link-298 tag-link-position-2" style="font-size: 16.91156462585px;" aria-label="Java代写代考 (7,265 items)">Java代写代考</a><a href="https://powcoder.com/tag/database/" class="tag-cloud-link tag-link-414 tag-link-position-3" style="font-size: 16.503401360544px;" aria-label="database (5,442 items)">database</a><a href="https://powcoder.com/tag/data-structure/" class="tag-cloud-link tag-link-501 tag-link-position-4" style="font-size: 16.401360544218px;" aria-label="data structure (5,183 items)">data structure</a><a href="https://powcoder.com/tag/python/" class="tag-cloud-link tag-link-331 tag-link-position-5" style="font-size: 16.299319727891px;" aria-label="Python代写代考 (4,796 items)">Python代写代考</a><a href="https://powcoder.com/tag/compiler/" class="tag-cloud-link tag-link-472 tag-link-position-6" style="font-size: 16.027210884354px;" aria-label="compiler (3,999 items)">compiler</a><a href="https://powcoder.com/tag/scheme/" class="tag-cloud-link tag-link-338 tag-link-position-7" style="font-size: 15.823129251701px;" aria-label="Scheme代写代考 (3,498 items)">Scheme代写代考</a><a href="https://powcoder.com/tag/c-4/" class="tag-cloud-link tag-link-499 tag-link-position-8" style="font-size: 15.823129251701px;" aria-label="C语言代写 (3,489 items)">C语言代写</a><a href="https://powcoder.com/tag/ai/" class="tag-cloud-link tag-link-369 tag-link-position-9" style="font-size: 15.142857142857px;" aria-label="AI代写 (2,210 items)">AI代写</a><a href="https://powcoder.com/tag/c-3/" class="tag-cloud-link tag-link-491 tag-link-position-10" style="font-size: 14.700680272109px;" aria-label="c++代写 (1,631 items)">c++代写</a><a href="https://powcoder.com/tag/sql/" class="tag-cloud-link tag-link-395 tag-link-position-11" style="font-size: 14.530612244898px;" aria-label="SQL代写代考 (1,457 items)">SQL代写代考</a><a href="https://powcoder.com/tag/haskell/" class="tag-cloud-link tag-link-291 tag-link-position-12" style="font-size: 14.530612244898px;" aria-label="Haskell代写代考 (1,453 items)">Haskell代写代考</a><a href="https://powcoder.com/tag/javascript/" class="tag-cloud-link tag-link-299 tag-link-position-13" style="font-size: 14.462585034014px;" aria-label="javascript (1,395 items)">javascript</a><a href="https://powcoder.com/tag/concurrency/" class="tag-cloud-link tag-link-503 tag-link-position-14" style="font-size: 14.428571428571px;" aria-label="concurrency (1,355 items)">concurrency</a><a href="https://powcoder.com/tag/matlab/" class="tag-cloud-link tag-link-309 tag-link-position-15" style="font-size: 14.360544217687px;" aria-label="matlab代写代考 (1,279 items)">matlab代写代考</a><a href="https://powcoder.com/tag/finance/" class="tag-cloud-link tag-link-282 tag-link-position-16" style="font-size: 14.292517006803px;" aria-label="finance (1,220 items)">finance</a><a href="https://powcoder.com/tag/interpreter/" class="tag-cloud-link tag-link-297 tag-link-position-17" style="font-size: 14.190476190476px;" aria-label="interpreter (1,144 items)">interpreter</a><a href="https://powcoder.com/tag/mips/" class="tag-cloud-link tag-link-313 tag-link-position-18" style="font-size: 14.156462585034px;" aria-label="MIPS汇编代写代考 (1,134 items)">MIPS汇编代写代考</a><a href="https://powcoder.com/tag/data-mining/" class="tag-cloud-link tag-link-271 tag-link-position-19" style="font-size: 13.986394557823px;" aria-label="data mining (990 items)">data mining</a><a href="https://powcoder.com/tag/decision-tree/" class="tag-cloud-link tag-link-273 tag-link-position-20" style="font-size: 13.952380952381px;" aria-label="decision tree (982 items)">decision tree</a><a href="https://powcoder.com/tag/deep-learning/" class="tag-cloud-link tag-link-274 tag-link-position-21" style="font-size: 13.952380952381px;" aria-label="deep learning深度学习代写代考 (979 items)">deep learning深度学习代写代考</a><a href="https://powcoder.com/tag/prolog/" class="tag-cloud-link tag-link-329 tag-link-position-22" style="font-size: 13.918367346939px;" aria-label="Prolog代写代考 (957 items)">Prolog代写代考</a><a href="https://powcoder.com/tag/file-system/" class="tag-cloud-link tag-link-281 tag-link-position-23" style="font-size: 13.850340136054px;" aria-label="file system (902 items)">file system</a><a href="https://powcoder.com/tag/c/" class="tag-cloud-link tag-link-265 tag-link-position-24" style="font-size: 13.578231292517px;" aria-label="c++代做 (764 items)">c++代做</a><a href="https://powcoder.com/tag/computer-architecture/" class="tag-cloud-link tag-link-507 tag-link-position-25" style="font-size: 13.47619047619px;" aria-label="computer architecture (711 items)">computer architecture</a><a href="https://powcoder.com/tag/er/" class="tag-cloud-link tag-link-433 tag-link-position-26" style="font-size: 13.47619047619px;" aria-label="ER (711 items)">ER</a><a href="https://powcoder.com/tag/gui/" class="tag-cloud-link tag-link-290 tag-link-position-27" style="font-size: 13.47619047619px;" aria-label="gui (711 items)">gui</a><a href="https://powcoder.com/tag/gpu/" class="tag-cloud-link tag-link-396 tag-link-position-28" style="font-size: 13.272108843537px;" aria-label="GPU (620 items)">GPU</a><a href="https://powcoder.com/tag/data-science/" class="tag-cloud-link tag-link-272 tag-link-position-29" style="font-size: 13.272108843537px;" aria-label="data science (615 items)">data science</a><a href="https://powcoder.com/tag/x86%e6%b1%87%e7%bc%96/" class="tag-cloud-link tag-link-514 tag-link-position-30" style="font-size: 13.238095238095px;" aria-label="x86汇编代写代考 (606 items)">x86汇编代写代考</a><a href="https://powcoder.com/tag/case-study/" class="tag-cloud-link tag-link-468 tag-link-position-31" style="font-size: 13.204081632653px;" aria-label="case study (586 items)">case study</a><a href="https://powcoder.com/tag/distributed-system/" class="tag-cloud-link tag-link-277 tag-link-position-32" style="font-size: 13.170068027211px;" aria-label="distributed system (576 items)">distributed system</a><a href="https://powcoder.com/tag/android/" class="tag-cloud-link tag-link-256 tag-link-position-33" style="font-size: 13.034013605442px;" aria-label="android (526 items)">android</a><a href="https://powcoder.com/tag/kernel/" class="tag-cloud-link tag-link-470 tag-link-position-34" style="font-size: 13.034013605442px;" aria-label="kernel (520 items)">kernel</a><a href="https://powcoder.com/tag/arm/" class="tag-cloud-link tag-link-483 tag-link-position-35" style="font-size: 13px;" aria-label="ARM汇编代写代考 (514 items)">ARM汇编代写代考</a></div> </nav></aside><aside id="block-4" class="widget widget_block"> <div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><div class="wp-block-group__inner-container"><ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/05/14/cs%e4%bb%a3%e5%86%99-cab203-bonkers-tournament-bonkers-is-an-extremely-exciting-and-fictitious/">CS代写 CAB203 Bonkers tournament! Bonkers is an extremely exciting and fictitious</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/05/13/it%e4%bb%a3%e5%86%99-comp3310-engn3539-etc-assignment-3-testing-mqtt/">IT代写 COMP3310/ENGN3539/etc Assignment 3 – Testing MQTT</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/05/13/%e7%a8%8b%e5%ba%8f%e4%bb%a3%e5%86%99-compx610_2024_hw5_uid-zip-replace-x-with-4-or-8-replace-the-uid-with-y/">程序代写 COMPX610_2024_HW5_UID.zip”. Replace ‘X’ with 4 or 8. Replace the UID with y</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/04/29/%e7%a8%8b%e5%ba%8f%e4%bb%a3%e5%86%99-acs6124-multisensor-and-decision-systems-part-ii-decision-systems-for-engi/">程序代写 ACS6124 Multisensor and Decision Systems Part II: Decision Systems for Engi</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/04/29/cs%e4%bb%a3%e5%86%99-acs6116-advanced-control-assignment/">CS代写 ACS6116 Advanced Control: Assignment</a></li> </ul></div></div> </aside> </div><!-- .sidebar-main --> </div><!-- #secondary --> </div> <!-- ast-container --> </div><!-- #content --> <footer class="site-footer" id="colophon" itemtype="https://schema.org/WPFooter" itemscope="itemscope" itemid="#colophon"> <div class="site-below-footer-wrap ast-builder-grid-row-container site-footer-focus-item ast-builder-grid-row-full ast-builder-grid-row-tablet-full ast-builder-grid-row-mobile-full ast-footer-row-stack ast-footer-row-tablet-stack ast-footer-row-mobile-stack" data-section="section-below-footer-builder"> <div class="ast-builder-grid-row-container-inner"> <div class="ast-builder-footer-grid-columns site-below-footer-inner-wrap ast-builder-grid-row"> <div class="site-footer-below-section-1 site-footer-section site-footer-section-1"> <div class="ast-builder-layout-element ast-flex site-footer-focus-item ast-footer-copyright" data-section="section-footer-builder"> <div class="ast-footer-copyright"><p>Copyright © 2024 PowCoder代写 | Powered by <a href="https://wpastra.com/" rel="nofollow noopener" target="_blank">Astra WordPress Theme</a></p> </div> </div> </div> </div> </div> </div> </footer><!-- #colophon --> </div><!-- #page --> <link rel="stylesheet" href="https://powcoder.com/wp-content/cache/minify/12163.css" media="all" /> <script id="astra-theme-js-js-extra"> var astra = {"break_point":"921","isRtl":"","is_scroll_to_id":"","is_scroll_to_top":"","is_header_footer_builder_active":"1"}; </script> <script src="https://powcoder.com/wp-content/cache/minify/75800.js"></script> <script src="https://stats.wp.com/e-202420.js" id="jetpack-stats-js" data-wp-strategy="defer"></script> <script id="jetpack-stats-js-after"> _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"132118579\",\"post\":\"40722\",\"tz\":\"8\",\"srv\":\"powcoder.com\",\"j\":\"1:13.4.3\"}") ]); _stq.push([ "clickTrackerInit", "132118579", "40722" ]); </script> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); </script> </body> </html> <!-- Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/ Object Caching 263/347 objects using Disk Page Caching using Disk: Enhanced Content Delivery Network via N/A Minified using Disk Served from: powcoder.com @ 2024-05-18 19:02:36 by W3 Total Cache -->